diff options
author | Josh Blum <josh@joshknows.com> | 2011-09-24 11:58:19 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-09-24 12:55:38 -0700 |
commit | f139fb7bf2a13f6c61c416de1c35db04ce509240 (patch) | |
tree | 0f19a3e1ebadd55566cbc117a4166bc6798a30ce | |
parent | 3773bb9cebbeeb82f3ebfd4ca3d1f65e18a601b7 (diff) |
howto: various fixes for howto example
-rw-r--r-- | gr-howto-write-a-block-cmake/lib/CMakeLists.txt | 6 | ||||
-rw-r--r-- | gr-howto-write-a-block-cmake/swig/CMakeLists.txt | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/gr-howto-write-a-block-cmake/lib/CMakeLists.txt b/gr-howto-write-a-block-cmake/lib/CMakeLists.txt index 798bc6ad62..a2b6da9507 100644 --- a/gr-howto-write-a-block-cmake/lib/CMakeLists.txt +++ b/gr-howto-write-a-block-cmake/lib/CMakeLists.txt @@ -30,9 +30,9 @@ SET_TARGET_PROPERTIES(gnuradio-howto PROPERTIES DEFINE_SYMBOL "gnuradio_howto_EX # Install built library files ######################################################################## INSTALL(TARGETS gnuradio-howto - LIBRARY DESTINATION ${LIB_SUFFIX}/lib # .so/.dylib file - ARCHIVE DESTINATION ${LIB_SUFFIX}/lib # .lib file - RUNTIME DESTINATION bin # .dll file + LIBRARY DESTINATION lib${LIB_SUFFIX} # .so/.dylib file + ARCHIVE DESTINATION lib${LIB_SUFFIX} # .lib file + RUNTIME DESTINATION bin # .dll file ) ######################################################################## diff --git a/gr-howto-write-a-block-cmake/swig/CMakeLists.txt b/gr-howto-write-a-block-cmake/swig/CMakeLists.txt index 40f2b1051e..fdf8d8c482 100644 --- a/gr-howto-write-a-block-cmake/swig/CMakeLists.txt +++ b/gr-howto-write-a-block-cmake/swig/CMakeLists.txt @@ -26,6 +26,7 @@ IF(NOT SWIG_FOUND OR NOT PYTHONLIBS_FOUND) RETURN() ENDIF() INCLUDE(GrSwig) +INCLUDE(GrPython) ######################################################################## # Setup swig generation |