2021-04-26 17:03:52 +02:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2021-01-28 21:10:08 +01:00
|
|
|
project(airspy_source)
|
|
|
|
|
|
|
|
if (MSVC)
|
2021-10-03 02:04:02 +02:00
|
|
|
add_compile_options(/O2 /Ob2 /std:c++17 /EHsc)
|
2021-04-18 19:20:51 +02:00
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
2021-10-03 01:13:15 +02:00
|
|
|
add_compile_options(-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
2021-04-18 19:12:07 +02:00
|
|
|
else ()
|
2021-10-03 01:13:15 +02:00
|
|
|
add_compile_options(-O3 -std=c++17)
|
2021-04-18 19:12:07 +02:00
|
|
|
endif ()
|
2021-01-28 21:10:08 +01:00
|
|
|
|
|
|
|
include_directories("src/")
|
|
|
|
|
|
|
|
file(GLOB SRC "src/*.cpp")
|
|
|
|
|
|
|
|
add_library(airspy_source SHARED ${SRC})
|
|
|
|
target_link_libraries(airspy_source PRIVATE sdrpp_core)
|
|
|
|
set_target_properties(airspy_source PROPERTIES PREFIX "")
|
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
# Lib path
|
2021-04-26 15:12:52 +02:00
|
|
|
target_link_directories(airspy_source PUBLIC "C:/Program Files/PothosSDR/bin/")
|
2021-01-28 21:10:08 +01:00
|
|
|
|
|
|
|
target_link_libraries(airspy_source PUBLIC airspy)
|
|
|
|
else (MSVC)
|
|
|
|
find_package(PkgConfig)
|
|
|
|
|
2021-04-16 20:21:42 +02:00
|
|
|
pkg_check_modules(LIBAIRSPY REQUIRED libairspy)
|
2021-01-28 21:10:08 +01:00
|
|
|
|
2021-04-16 20:21:42 +02:00
|
|
|
target_include_directories(airspy_source PUBLIC ${LIBAIRSPY_INCLUDE_DIRS})
|
2021-04-29 15:44:32 +02:00
|
|
|
target_link_directories(airspy_source PUBLIC ${LIBAIRSPY_LIBRARY_DIRS})
|
2021-04-16 20:21:42 +02:00
|
|
|
target_link_libraries(airspy_source PUBLIC ${LIBAIRSPY_LIBRARIES})
|
2021-04-29 16:32:06 +02:00
|
|
|
|
|
|
|
# Include it because for some reason pkgconfig doesn't look here?
|
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
|
|
target_include_directories(airspy_source PUBLIC "/usr/local/include")
|
|
|
|
endif()
|
|
|
|
|
2021-04-18 19:12:07 +02:00
|
|
|
endif ()
|
2021-02-11 22:49:33 +01:00
|
|
|
|
|
|
|
# Install directives
|
|
|
|
install(TARGETS airspy_source DESTINATION lib/sdrpp/plugins)
|