2021-04-26 17:03:52 +02:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2020-12-26 00:42:15 +01:00
|
|
|
project(hackrf_source)
|
|
|
|
|
|
|
|
file(GLOB SRC "src/*.cpp")
|
|
|
|
|
2023-02-14 16:25:05 +01:00
|
|
|
include(${SDRPP_MODULE_CMAKE})
|
2021-10-04 02:34:17 +02:00
|
|
|
|
2020-12-26 00:42:15 +01:00
|
|
|
if (MSVC)
|
|
|
|
# Lib path
|
2021-10-04 03:31:13 +02:00
|
|
|
target_link_directories(hackrf_source PRIVATE "C:/Program Files/PothosSDR/bin/")
|
2020-12-26 00:42:15 +01:00
|
|
|
|
2021-10-04 03:31:13 +02:00
|
|
|
target_link_libraries(hackrf_source PRIVATE hackrf)
|
2022-02-13 17:25:23 +01:00
|
|
|
elseif (ANDROID)
|
2022-03-30 17:33:47 +02:00
|
|
|
target_include_directories(hackrf_source PUBLIC
|
2022-09-02 20:08:16 +02:00
|
|
|
/sdr-kit/${ANDROID_ABI}/include/libhackrf
|
2022-02-13 17:25:23 +01:00
|
|
|
)
|
|
|
|
|
2022-03-30 17:33:47 +02:00
|
|
|
target_link_libraries(hackrf_source PUBLIC
|
2022-09-02 20:08:16 +02:00
|
|
|
/sdr-kit/${ANDROID_ABI}/lib/libusb1.0.so
|
|
|
|
/sdr-kit/${ANDROID_ABI}/lib/libhackrf.so
|
2022-02-13 17:25:23 +01:00
|
|
|
)
|
2020-12-26 00:42:15 +01:00
|
|
|
else (MSVC)
|
|
|
|
find_package(PkgConfig)
|
|
|
|
|
|
|
|
pkg_check_modules(LIBHACKRF REQUIRED libhackrf)
|
|
|
|
|
2021-10-04 03:31:13 +02:00
|
|
|
target_include_directories(hackrf_source PRIVATE ${LIBHACKRF_INCLUDE_DIRS})
|
|
|
|
target_link_directories(hackrf_source PRIVATE ${LIBHACKRF_LIBRARY_DIRS})
|
|
|
|
target_link_libraries(hackrf_source PRIVATE ${LIBHACKRF_LIBRARIES})
|
2023-02-14 16:25:05 +01:00
|
|
|
endif ()
|