diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-09-14 16:11:17 +0200 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-09-17 12:53:46 -0700 |
commit | 9985dd7ac5837a8ab46032c9a3aee5fc463017ca (patch) | |
tree | 3b0ad171b7751c090d0b65fb072ff5ca1030ab48 /host/examples/rfnoc-example/lib | |
parent | 0ee2a409c4796f87d2d311356b775d437a5cc102 (diff) | |
download | uhd-9985dd7ac5837a8ab46032c9a3aee5fc463017ca.tar.gz uhd-9985dd7ac5837a8ab46032c9a3aee5fc463017ca.tar.bz2 uhd-9985dd7ac5837a8ab46032c9a3aee5fc463017ca.zip |
cmake: Fix rfnoc-example (CMake paths)
This reverts part of 09d94529e, which should not have touched these
particular CMake files.
Diffstat (limited to 'host/examples/rfnoc-example/lib')
-rw-r--r-- | host/examples/rfnoc-example/lib/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/host/examples/rfnoc-example/lib/CMakeLists.txt b/host/examples/rfnoc-example/lib/CMakeLists.txt index 8b447723d..45b5c9b03 100644 --- a/host/examples/rfnoc-example/lib/CMakeLists.txt +++ b/host/examples/rfnoc-example/lib/CMakeLists.txt @@ -23,10 +23,10 @@ endif() # Setup the include and linker paths ######################################################################## include_directories( - ${UHD_SOURCE_DIR}/lib - ${UHD_SOURCE_DIR}/include - ${UHD_BINARY_DIR}/lib - ${UHD_BINARY_DIR}/include + ${CMAKE_SOURCE_DIR}/lib + ${CMAKE_SOURCE_DIR}/include + ${CMAKE_BINARY_DIR}/lib + ${CMAKE_BINARY_DIR}/include ${UHD_INCLUDE_DIRS} ${Boost_INCLUDE_DIR} ) |