summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2014-01-16 12:31:06 -0800
committerJohnathan Corgan <johnathan@corganlabs.com>2014-01-16 12:31:06 -0800
commitdf5dfc35ea76425f6f3505087b58e565b2189636 (patch)
tree018384dcf0450b39b6ff78f44ec7a1b0363bd6d7
parent117153baaa0892bf78e207e347f48c8c49da50ee (diff)
parent5743258c3329824761de2823a8b59fd91a992965 (diff)
Merge remote-tracking branch 'martin/modtool_osx'
-rw-r--r--gr-utils/python/modtool/gr-newmod/lib/CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/gr-utils/python/modtool/gr-newmod/lib/CMakeLists.txt b/gr-utils/python/modtool/gr-newmod/lib/CMakeLists.txt
index de53723de2..05e1fcf5b8 100644
--- a/gr-utils/python/modtool/gr-newmod/lib/CMakeLists.txt
+++ b/gr-utils/python/modtool/gr-newmod/lib/CMakeLists.txt
@@ -32,6 +32,12 @@ add_library(gnuradio-howto SHARED ${howto_sources})
target_link_libraries(gnuradio-howto ${Boost_LIBRARIES} ${GNURADIO_ALL_LIBRARIES})
set_target_properties(gnuradio-howto PROPERTIES DEFINE_SYMBOL "gnuradio_howto_EXPORTS")
+if(APPLE)
+ set_target_properties(gnuradio-howto PROPERTIES
+ INSTALL_NAME_DIR "${CMAKE_INSTALL_PREFIX}/lib"
+ )
+endif(APPLE)
+
########################################################################
# Install built library files
########################################################################