aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Anderseck <martin.anderseck@ni.com>2024-02-26 14:14:34 +0100
committerAki Tomita <121511582+atomita-ni@users.noreply.github.com>2024-02-26 14:05:01 -0600
commit1bd7e1ed8f267c067641a8e27dc7b6d7b9788eba (patch)
treeed3de0ea99e79b26748655aae8b71d5a8a0aef16
parentuhd: Demote safe call logging to warning (diff)
downloaduhd-1bd7e1ed8f267c067641a8e27dc7b6d7b9788eba.tar.xz
uhd-1bd7e1ed8f267c067641a8e27dc7b6d7b9788eba.zip
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.
-rw-r--r--host/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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)