diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-05-22 09:29:16 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-05-23 08:46:59 -0700 |
commit | d2acf841f3576b6f7b948eef94f75c712617851c (patch) | |
tree | 9f9a6cc132576cba706316a6b7b29932f7a75457 /host/CMakeLists.txt | |
parent | dbfef2bcd770ec6f9d03b5c94960aa13177cf677 (diff) | |
download | uhd-d2acf841f3576b6f7b948eef94f75c712617851c.tar.gz uhd-d2acf841f3576b6f7b948eef94f75c712617851c.tar.bz2 uhd-d2acf841f3576b6f7b948eef94f75c712617851c.zip |
cmake: Change default value for ENABLE_RFNOC to ON
This means that by default:
- Symbols get exported
- Headers get installed
- Examples get compiled
The switch still exists and can be disabled.
Diffstat (limited to 'host/CMakeLists.txt')
-rw-r--r-- | host/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt index 84cc60f05..2d2e465d1 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -345,7 +345,7 @@ message(STATUS "Boost libraries: ${Boost_LIBRARIES}") # Additional settings for build environment ######################################################################## # Note: RFNoC never gets fully disabled, but the public APIs do -set(ENABLE_RFNOC OFF CACHE BOOL "Export RFNoC includes and symbols") +set(ENABLE_RFNOC ON CACHE BOOL "Export RFNoC includes and symbols") include(UHDGlobalDefs) include(UHDLog) |