diff options
author | Michael L Dickens | 2013-01-01 21:42:23 -0500 |
---|---|---|
committer | Michael L Dickens | 2013-01-01 21:42:23 -0500 |
commit | e788c523d4f8de3efd64a64f148ac1bf25ea032d (patch) | |
tree | c6c243c3770f65a71cb9f3990dd2dd8c27bdb422 /gr-howto-write-a-block/swig/CMakeLists.txt | |
parent | 053d729bcaa6e88791ae21f4c29f3df631aaab65 (diff) | |
download | gnuradio-e788c523d4f8de3efd64a64f148ac1bf25ea032d.tar.gz gnuradio-e788c523d4f8de3efd64a64f148ac1bf25ea032d.tar.bz2 gnuradio-e788c523d4f8de3efd64a64f148ac1bf25ea032d.zip |
Tweak INCLUDE dirs such that INCLUDE_DIRECTORIES and LINK_DIRECTORIES are ordered as: internal build and source for this component, other components (internal build and source, or already installed), non-project non-system dependencies (e.g., Qt, Boost, Python), system dependencies (e.g., CoreAudio).
Diffstat (limited to 'gr-howto-write-a-block/swig/CMakeLists.txt')
-rw-r--r-- | gr-howto-write-a-block/swig/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gr-howto-write-a-block/swig/CMakeLists.txt b/gr-howto-write-a-block/swig/CMakeLists.txt index 1e3e59e2c..4d5f1156e 100644 --- a/gr-howto-write-a-block/swig/CMakeLists.txt +++ b/gr-howto-write-a-block/swig/CMakeLists.txt @@ -39,6 +39,8 @@ foreach(incdir ${GRUEL_INCLUDE_DIRS}) list(APPEND GR_SWIG_INCLUDE_DIRS ${incdir}/gruel/swig) endforeach(incdir) +list(APPEND GR_SWIG_INCLUDE_DIRS ${Boost_INCLUDE_DIRS}) + set(GR_SWIG_LIBRARIES gnuradio-howto) set(GR_SWIG_DOC_FILE ${CMAKE_CURRENT_BINARY_DIR}/howto_swig_doc.i) set(GR_SWIG_DOC_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/../include) |