aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri Stolnikov <horiz0n@gmx.net>2015-06-06 22:01:33 +0200
committerDimitri Stolnikov <horiz0n@gmx.net>2015-06-06 22:01:33 +0200
commit46e95395e09f952654da30bf575790ad1f7736e1 (patch)
treee96a69dce9be91f2bed6d7da6706bf9c56d08504
parentf33f30815a7b9494315d4782245447ebca21c02e (diff)
cmake: move check for hackrf_device_list to hackrf subdirectory
-rw-r--r--cmake/Modules/FindLibHackRF.cmake9
-rw-r--r--lib/hackrf/CMakeLists.txt9
2 files changed, 9 insertions, 9 deletions
diff --git a/cmake/Modules/FindLibHackRF.cmake b/cmake/Modules/FindLibHackRF.cmake
index f17094c..a0d57ef 100644
--- a/cmake/Modules/FindLibHackRF.cmake
+++ b/cmake/Modules/FindLibHackRF.cmake
@@ -23,12 +23,3 @@ INCLUDE(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(LIBHACKRF DEFAULT_MSG LIBHACKRF_LIBRARIES LIBHACKRF_INCLUDE_DIRS)
MARK_AS_ADVANCED(LIBHACKRF_LIBRARIES LIBHACKRF_INCLUDE_DIRS)
-INCLUDE(CheckFunctionExists)
-set(CMAKE_REQUIRED_LIBRARIES ${LIBHACKRF_LIBRARIES})
-CHECK_FUNCTION_EXISTS(hackrf_device_list LIBHACKRF_HAVE_DEVICE_LIST)
-
-if(LIBHACKRF_HAVE_DEVICE_LIST)
- message(STATUS "HackRF multiple device support enabled")
- add_definitions(-DLIBHACKRF_HAVE_DEVICE_LIST)
-endif(LIBHACKRF_HAVE_DEVICE_LIST)
-
diff --git a/lib/hackrf/CMakeLists.txt b/lib/hackrf/CMakeLists.txt
index 31f991b..c7af0c9 100644
--- a/lib/hackrf/CMakeLists.txt
+++ b/lib/hackrf/CMakeLists.txt
@@ -31,6 +31,15 @@ set(hackrf_srcs
${CMAKE_CURRENT_SOURCE_DIR}/hackrf_sink_c.cc
)
+INCLUDE(CheckFunctionExists)
+set(CMAKE_REQUIRED_LIBRARIES ${LIBHACKRF_LIBRARIES})
+CHECK_FUNCTION_EXISTS(hackrf_device_list LIBHACKRF_HAVE_DEVICE_LIST)
+
+if(LIBHACKRF_HAVE_DEVICE_LIST)
+ message(STATUS "HackRF multiple device support enabled")
+ add_definitions(-DLIBHACKRF_HAVE_DEVICE_LIST)
+endif(LIBHACKRF_HAVE_DEVICE_LIST)
+
########################################################################
# Append gnuradio-osmosdr library sources
########################################################################