diff options
author | Martin Braun <martin.braun@ettus.com> | 2015-06-09 16:17:53 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-06-09 16:17:53 -0700 |
commit | 533548a681f0045f1194c4b47f857fa16314784d (patch) | |
tree | d5dbc598b17605d5c4be85fad08f1c766025bb6c /host/examples | |
parent | 13f9f07c42c4928ef3adcb1bbee3343198c9ecae (diff) | |
parent | 4d0dadb3cc0106c9026bc41d7d74d55918d13b43 (diff) | |
download | uhd-533548a681f0045f1194c4b47f857fa16314784d.tar.gz uhd-533548a681f0045f1194c4b47f857fa16314784d.tar.bz2 uhd-533548a681f0045f1194c4b47f857fa16314784d.zip |
Merge branch 'maint'
Conflicts:
host/lib/usrp/common/ad9361_ctrl.hpp
host/lib/usrp/common/ad9361_driver/ad9361_device.h
host/lib/usrp/e300/e300_remote_codec_ctrl.hpp
Diffstat (limited to 'host/examples')
-rw-r--r-- | host/examples/init_usrp/.gitignore | 1 | ||||
-rw-r--r-- | host/examples/init_usrp/CMakeLists.txt | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/host/examples/init_usrp/.gitignore b/host/examples/init_usrp/.gitignore new file mode 100644 index 000000000..567609b12 --- /dev/null +++ b/host/examples/init_usrp/.gitignore @@ -0,0 +1 @@ +build/ diff --git a/host/examples/init_usrp/CMakeLists.txt b/host/examples/init_usrp/CMakeLists.txt index 3560dbd45..8705b4a8d 100644 --- a/host/examples/init_usrp/CMakeLists.txt +++ b/host/examples/init_usrp/CMakeLists.txt @@ -55,6 +55,14 @@ link_directories(${Boost_LIBRARY_DIRS}) ### Make the executable ####################################################### add_executable(init_usrp init_usrp.cpp) +SET(CMAKE_BUILD_TYPE "Release") +MESSAGE(STATUS "******************************************************************************") +MESSAGE(STATUS "* NOTE: When building your own app, you probably need all kinds of different ") +MESSAGE(STATUS "* compiler flags. This is just an example, so it's unlikely these settings ") +MESSAGE(STATUS "* exactly matchh what you require. Make sure to double-check compiler and ") +MESSAGE(STATUS "* linker flags to make sure your specific requirements are included. ") +MESSAGE(STATUS "******************************************************************************") + # Shared library case: All we need to do is link against the library, and # anything else we need (in this case, some Boost libraries): if(NOT UHD_USE_STATIC_LIBS) |