diff options
author | Tom Rondeau | 2012-04-07 20:03:25 -0400 |
---|---|---|
committer | Tom Rondeau | 2012-04-07 20:03:25 -0400 |
commit | aaa98c095a85724a8782a28717162c1d30d865c2 (patch) | |
tree | 14bcfe0dd65c42764966dad44995cc797572a4ce /gr-howto-write-a-block-cmake | |
parent | fdb41fe3399c2282b31297e65f7a020bf844282d (diff) | |
download | gnuradio-aaa98c095a85724a8782a28717162c1d30d865c2.tar.gz gnuradio-aaa98c095a85724a8782a28717162c1d30d865c2.tar.bz2 gnuradio-aaa98c095a85724a8782a28717162c1d30d865c2.zip |
gruel and howto: install gruel .i files in gruel dest. Howto will use that dir during build.
howto under both cmake and autotools can be built off cmake or autotools gnuradio builds.
Diffstat (limited to 'gr-howto-write-a-block-cmake')
-rw-r--r-- | gr-howto-write-a-block-cmake/swig/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gr-howto-write-a-block-cmake/swig/CMakeLists.txt b/gr-howto-write-a-block-cmake/swig/CMakeLists.txt index ac5f700f1..1e3e59e2c 100644 --- a/gr-howto-write-a-block-cmake/swig/CMakeLists.txt +++ b/gr-howto-write-a-block-cmake/swig/CMakeLists.txt @@ -35,6 +35,10 @@ foreach(incdir ${GNURADIO_CORE_INCLUDE_DIRS}) list(APPEND GR_SWIG_INCLUDE_DIRS ${incdir}/swig) endforeach(incdir) +foreach(incdir ${GRUEL_INCLUDE_DIRS}) + list(APPEND GR_SWIG_INCLUDE_DIRS ${incdir}/gruel/swig) +endforeach(incdir) + 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) |