diff options
author | Johnathan Corgan | 2012-03-23 12:06:53 -0700 |
---|---|---|
committer | Johnathan Corgan | 2012-03-23 12:06:53 -0700 |
commit | f95a0abbd501142468b33d63bda0ca69e56cea5b (patch) | |
tree | 5bae9e7457c39c0b36abd901e01a704ec00fdca9 | |
parent | 116f82343080091df0c3c7efb61c202cadf30f3b (diff) | |
download | gnuradio-f95a0abbd501142468b33d63bda0ca69e56cea5b.tar.gz gnuradio-f95a0abbd501142468b33d63bda0ca69e56cea5b.tar.bz2 gnuradio-f95a0abbd501142468b33d63bda0ca69e56cea5b.zip |
cmake: fix include path order in gruel
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | gruel/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b6b5eb496..5f69cee0d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ ######################################################################## if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR}) - message(FATAL_ERROR "Prevented in-tree built. This is bad practice.") + message(FATAL_ERROR "Prevented in-tree build. This is bad practice.") endif(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR}) ######################################################################## diff --git a/gruel/CMakeLists.txt b/gruel/CMakeLists.txt index b33217c14..5fdc2b218 100644 --- a/gruel/CMakeLists.txt +++ b/gruel/CMakeLists.txt @@ -35,9 +35,9 @@ GR_REGISTER_COMPONENT("gruel" ENABLE_GRUEL include(GrMiscUtils) GR_SET_GLOBAL(GRUEL_INCLUDE_DIRS - ${Boost_INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR}/src/include ${CMAKE_CURRENT_BINARY_DIR}/src/include + ${Boost_INCLUDE_DIRS} ) ######################################################################## |