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")
|
|
|
|
|
|
|
|
add_library(hackrf_source SHARED ${SRC})
|
|
|
|
target_link_libraries(hackrf_source PRIVATE sdrpp_core)
|
|
|
|
set_target_properties(hackrf_source PROPERTIES PREFIX "")
|
|
|
|
|
2021-10-04 03:31:13 +02:00
|
|
|
target_include_directories(hackrf_source PRIVATE "src/")
|
|
|
|
|
2021-10-04 02:34:17 +02:00
|
|
|
if (MSVC)
|
|
|
|
target_compile_options(hackrf_source PRIVATE /O2 /Ob2 /std:c++17 /EHsc)
|
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
|
|
target_compile_options(hackrf_source PRIVATE -O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
|
|
|
else ()
|
|
|
|
target_compile_options(hackrf_source PRIVATE -O3 -std=c++17)
|
|
|
|
endif ()
|
|
|
|
|
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})
|
2021-04-18 19:12:07 +02:00
|
|
|
endif ()
|
2021-02-11 22:49:33 +01:00
|
|
|
|
|
|
|
# Install directives
|
|
|
|
install(TARGETS hackrf_source DESTINATION lib/sdrpp/plugins)
|