diff options
author | Josh Blum <josh@joshknows.com> | 2013-06-21 12:50:39 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2013-06-21 12:50:39 -0700 |
commit | 80045259b53260eeee57e84c34810ea58b39605b (patch) | |
tree | 8138d70c33c70330bbd27ff2091840c4894dda11 /host/utils | |
parent | deef51d8a33bde0899152a97df40dfb6635cd567 (diff) | |
download | uhd-80045259b53260eeee57e84c34810ea58b39605b.tar.gz uhd-80045259b53260eeee57e84c34810ea58b39605b.tar.bz2 uhd-80045259b53260eeee57e84c34810ea58b39605b.zip |
uhd: explicitly link the apps w/ boost
Diffstat (limited to 'host/utils')
-rw-r--r-- | host/utils/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/utils/CMakeLists.txt b/host/utils/CMakeLists.txt index ceeab0050..b04d0e1b9 100644 --- a/host/utils/CMakeLists.txt +++ b/host/utils/CMakeLists.txt @@ -31,7 +31,7 @@ SET(util_runtime_sources FOREACH(util_source ${util_runtime_sources}) GET_FILENAME_COMPONENT(util_name ${util_source} NAME_WE) ADD_EXECUTABLE(${util_name} ${util_source}) - TARGET_LINK_LIBRARIES(${util_name} uhd) + TARGET_LINK_LIBRARIES(${util_name} uhd ${Boost_LIBRARIES}) UHD_INSTALL(TARGETS ${util_name} RUNTIME DESTINATION ${RUNTIME_DIR} COMPONENT utilities) ENDFOREACH(util_source) @@ -62,7 +62,7 @@ ENDIF(LINUX AND ENABLE_USB) FOREACH(util_source ${util_share_sources}) GET_FILENAME_COMPONENT(util_name ${util_source} NAME_WE) ADD_EXECUTABLE(${util_name} ${util_source}) - TARGET_LINK_LIBRARIES(${util_name} uhd) + TARGET_LINK_LIBRARIES(${util_name} uhd ${Boost_LIBRARIES}) UHD_INSTALL(TARGETS ${util_name} RUNTIME DESTINATION ${PKG_LIB_DIR}/utils COMPONENT utilities) ENDFOREACH(util_source) |