From 1bd7e1ed8f267c067641a8e27dc7b6d7b9788eba Mon Sep 17 00:00:00 2001 From: Martin Anderseck Date: Mon, 26 Feb 2024 14:14:34 +0100 Subject: cmake: Change ENABLE_PYMOD_UTILS default to ON While 'Python Module (Utils only)' is a subset only of the Python API 'uhd' module for conveniently installing some Python utils only, to the user it may look like they are missing something if the output of cmake states that 'Python Module (Utils only)' is not in the enabled components list by default. This commit changes the default from OFF to ON. --- host/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt index 8281a98a0..20e09f066 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -443,7 +443,7 @@ LIBUHD_REGISTER_COMPONENT("Utils" ENABLE_UTILS ON "ENABLE_LIBUHD" OFF OFF) LIBUHD_REGISTER_COMPONENT("Tests" ENABLE_TESTS ON "ENABLE_LIBUHD" OFF OFF) LIBUHD_REGISTER_COMPONENT( "Python Module (Utils only)" - ENABLE_PYMOD_UTILS OFF + ENABLE_PYMOD_UTILS ON "HAVE_PYTHON_MODULE_NUMPY;HAVE_PYTHON_MODULE_MAKO;HAVE_PYTHON_MODULE_YAML" OFF OFF) -- cgit v1.2.3-59-g8ed1b