2021-04-26 17:03:52 +02:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2020-12-15 23:05:11 +01:00
|
|
|
project(airspyhf_source)
|
|
|
|
|
|
|
|
file(GLOB SRC "src/*.cpp")
|
|
|
|
|
|
|
|
add_library(airspyhf_source SHARED ${SRC})
|
|
|
|
target_link_libraries(airspyhf_source PRIVATE sdrpp_core)
|
|
|
|
set_target_properties(airspyhf_source PROPERTIES PREFIX "")
|
|
|
|
|
2021-10-04 03:31:13 +02:00
|
|
|
target_include_directories(airspyhf_source PRIVATE "src/")
|
|
|
|
|
2021-10-04 02:34:17 +02:00
|
|
|
if (MSVC)
|
|
|
|
target_compile_options(airspyhf_source PRIVATE /O2 /Ob2 /std:c++17 /EHsc)
|
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
|
|
target_compile_options(airspyhf_source PRIVATE -O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
|
|
|
else ()
|
|
|
|
target_compile_options(airspyhf_source PRIVATE -O3 -std=c++17)
|
|
|
|
endif ()
|
|
|
|
|
2020-12-15 23:05:11 +01:00
|
|
|
if (MSVC)
|
|
|
|
# Lib path
|
2021-10-04 03:31:13 +02:00
|
|
|
target_link_directories(airspyhf_source PRIVATE "C:/Program Files/PothosSDR/bin/")
|
2020-12-15 23:05:11 +01:00
|
|
|
|
2021-11-16 03:33:09 +01:00
|
|
|
target_include_directories(airspyhf_source PUBLIC "C:/Program Files/PothosSDR/include/libairspyhf/")
|
|
|
|
|
2021-10-04 03:31:13 +02:00
|
|
|
target_link_libraries(airspyhf_source PRIVATE airspyhf)
|
2020-12-15 23:05:11 +01:00
|
|
|
else (MSVC)
|
|
|
|
find_package(PkgConfig)
|
|
|
|
|
2020-12-22 21:23:49 +01:00
|
|
|
pkg_check_modules(LIBAIRSPYHF REQUIRED libairspyhf)
|
2020-12-15 23:05:11 +01:00
|
|
|
|
2021-10-04 03:31:13 +02:00
|
|
|
target_include_directories(airspyhf_source PRIVATE ${LIBAIRSPYHF_INCLUDE_DIRS})
|
|
|
|
target_link_directories(airspyhf_source PRIVATE ${LIBAIRSPYHF_LIBRARY_DIRS})
|
|
|
|
target_link_libraries(airspyhf_source PRIVATE ${LIBAIRSPYHF_LIBRARIES})
|
2021-05-03 02:08:49 +02:00
|
|
|
|
|
|
|
# Include it because for some reason pkgconfig doesn't look here?
|
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
2021-10-04 03:31:13 +02:00
|
|
|
target_include_directories(airspyhf_source PRIVATE "/usr/local/include")
|
2021-05-03 02:08:49 +02:00
|
|
|
endif()
|
|
|
|
|
2021-04-18 19:12:07 +02:00
|
|
|
endif ()
|
2021-02-11 22:49:33 +01:00
|
|
|
|
|
|
|
# Install directives
|
|
|
|
install(TARGETS airspyhf_source DESTINATION lib/sdrpp/plugins)
|