diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2012-11-12 09:34:06 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-11-12 13:23:37 -0800 |
commit | 8ea5966f7abbfcc12ec38a3d4532929762c80064 (patch) | |
tree | 7858d917bc05c6b0e3b5403f219193693265f6ab | |
parent | a3f18afa672d4f14b8982e5666de920e9bc08f7e (diff) | |
download | uhd-8ea5966f7abbfcc12ec38a3d4532929762c80064.tar.gz uhd-8ea5966f7abbfcc12ec38a3d4532929762c80064.tar.bz2 uhd-8ea5966f7abbfcc12ec38a3d4532929762c80064.zip |
cmake: UHD_RELEASE_MODE is now cached and no longer resets between CMake runs
-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 55fd5630f..ba532eed2 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -71,7 +71,7 @@ ENDIF(NOT CMAKE_BUILD_TYPE) SET(CMAKE_BUILD_TYPE "${CMAKE_BUILD_TYPE}" CACHE STRING "") #force UHD_RELEASE_MODE to be a string for cmake-gui -SET(UHD_RELEASE_MODE CACHE STRING "${UHD_RELEASE_MODE}" FORCE) +SET(UHD_RELEASE_MODE "${UHD_RELEASE_MODE}" CACHE STRING "UHD Release Mode") IF(CMAKE_COMPILER_IS_GNUCXX) ADD_DEFINITIONS(-Wall) |