aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/rfnoc-example/lib
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2021-09-14 16:11:17 +0200
committerAaron Rossetto <aaron.rossetto@ni.com>2021-09-17 12:53:46 -0700
commit9985dd7ac5837a8ab46032c9a3aee5fc463017ca (patch)
tree3b0ad171b7751c090d0b65fb072ff5ca1030ab48 /host/examples/rfnoc-example/lib
parent0ee2a409c4796f87d2d311356b775d437a5cc102 (diff)
downloaduhd-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.txt8
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}
)