diff options
author | Martin Braun <martin.braun@ettus.com> | 2015-01-07 23:53:06 +0100 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-01-13 11:48:55 +0100 |
commit | 56081fe4d671c9d58dea2d594f4aa6b35c9d6f3d (patch) | |
tree | 56277fcb6fc3d90a640e1440a3035baf21712ad7 /host/CMakeLists.txt | |
parent | 23729861a2020359b9c920347bd2d7c43d96ebf8 (diff) | |
download | uhd-56081fe4d671c9d58dea2d594f4aa6b35c9d6f3d.tar.gz uhd-56081fe4d671c9d58dea2d594f4aa6b35c9d6f3d.tar.bz2 uhd-56081fe4d671c9d58dea2d594f4aa6b35c9d6f3d.zip |
cmake: Added config.h back to the game
Diffstat (limited to 'host/CMakeLists.txt')
-rw-r--r-- | host/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt index 856f1ec70..67a824c8f 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -62,6 +62,7 @@ SET(PKG_MAN_DIR share/man/man1) ######################################################################## # Local Include Dir ######################################################################## +INCLUDE_DIRECTORIES(${CMAKE_BINARY_DIR}/include) INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include) ######################################################################## @@ -190,6 +191,11 @@ MESSAGE(STATUS "Boost library directories: ${Boost_LIBRARY_DIRS}") MESSAGE(STATUS "Boost libraries: ${Boost_LIBRARIES}") ######################################################################## +# Additional settings for build environment +######################################################################## +INCLUDE(UHDGlobalDefs) + +######################################################################## # Check Python Modules ######################################################################## INCLUDE(UHDPython) |