From f7025149aa3537601b63f4c288fb09f8be14cbc3 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel <guilhem.saurel@laas.fr> Date: Fri, 12 Apr 2024 15:54:05 +0200 Subject: [PATCH] CMake: enable python bindings by default, fix #123 --- CHANGELOG.md | 3 ++- CMakeLists.txt | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c14888..8923dc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -- fix use of np.random in tests +- tests: fix use of np.random in tests +- CMake: enable python bindings by default ## [1.4.0] - 2024-04-12 diff --git a/CMakeLists.txt b/CMakeLists.txt index 773a33f..5a6a53a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ set(PROJECT_DESCRIPTION "creatie and manipulate spline and bezier curves.") set(PROJECT_URL "https://github.com/${PROJECT_ORG}/${PROJECT_NAME}") # Project options -option(BUILD_PYTHON_INTERFACE "Build the python bindings" OFF) +option(BUILD_PYTHON_INTERFACE "Build the python bindings" ON) option(INSTALL_PYTHON_INTERFACE_ONLY "Install *ONLY* the python bindings" OFF) option(SUFFIX_SO_VERSION "Suffix library name with its version" ON) -- GitLab