diff options
| author | Josh Blum <josh@joshknows.com> | 2013-06-21 12:51:03 -0700 | 
|---|---|---|
| committer | Josh Blum <josh@joshknows.com> | 2013-06-21 12:51:03 -0700 | 
| commit | 8f4000ff683d62baf7e3477004219d2d87601d6a (patch) | |
| tree | c4a5f2ad7349f6a3897cc24665799dd4e93c9ee2 | |
| parent | 6cfe82e7b6114b5b73ec07260be2e3ed8b3453dc (diff) | |
| parent | 80045259b53260eeee57e84c34810ea58b39605b (diff) | |
| download | uhd-8f4000ff683d62baf7e3477004219d2d87601d6a.tar.gz uhd-8f4000ff683d62baf7e3477004219d2d87601d6a.tar.bz2 uhd-8f4000ff683d62baf7e3477004219d2d87601d6a.zip | |
Merge branch 'maint'
| -rw-r--r-- | host/examples/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | host/utils/CMakeLists.txt | 4 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/host/examples/CMakeLists.txt b/host/examples/CMakeLists.txt index bdefeba0a..53e913070 100644 --- a/host/examples/CMakeLists.txt +++ b/host/examples/CMakeLists.txt @@ -42,7 +42,7 @@ SET(example_sources  FOREACH(example_source ${example_sources})      GET_FILENAME_COMPONENT(example_name ${example_source} NAME_WE)      ADD_EXECUTABLE(${example_name} ${example_source}) -    TARGET_LINK_LIBRARIES(${example_name} uhd) +    TARGET_LINK_LIBRARIES(${example_name} uhd ${Boost_LIBRARIES})      UHD_INSTALL(TARGETS ${example_name} RUNTIME DESTINATION ${PKG_LIB_DIR}/examples COMPONENT examples)  ENDFOREACH(example_source) @@ -54,6 +54,6 @@ FIND_PACKAGE(Curses)  IF(CURSES_FOUND)      INCLUDE_DIRECTORIES(${CURSES_INCLUDE_DIR})      ADD_EXECUTABLE(rx_ascii_art_dft rx_ascii_art_dft.cpp) -    TARGET_LINK_LIBRARIES(rx_ascii_art_dft uhd ${CURSES_LIBRARIES}) +    TARGET_LINK_LIBRARIES(rx_ascii_art_dft uhd ${CURSES_LIBRARIES} ${Boost_LIBRARIES})      UHD_INSTALL(TARGETS rx_ascii_art_dft RUNTIME DESTINATION ${PKG_LIB_DIR}/examples COMPONENT examples)  ENDIF(CURSES_FOUND) 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) | 
