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)
|
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc")
|
2021-04-18 19:20:51 +02:00
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
2021-04-18 19:24:56 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup")
|
2021-04-18 19:12:07 +02:00
|
|
|
else ()
|
|
|
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17")
|
|
|
|
endif ()
|
2020-12-15 23:05:11 +01:00
|
|
|
|
|
|
|
include_directories("src/")
|
|
|
|
|
|
|
|
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 "")
|
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
# Lib path
|
2021-04-26 15:12:52 +02:00
|
|
|
target_link_directories(airspyhf_source PUBLIC "C:/Program Files/PothosSDR/bin/")
|
2020-12-15 23:05:11 +01:00
|
|
|
|
|
|
|
target_link_libraries(airspyhf_source PUBLIC airspyhf)
|
|
|
|
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
|
|
|
|
2020-12-22 20:00:51 +01:00
|
|
|
target_include_directories(airspyhf_source PUBLIC ${LIBAIRSPYHF_INCLUDE_DIRS})
|
2021-04-29 14:30:11 +02:00
|
|
|
target_link_directories(airspyhf_source PUBLIC ${LIBAIRSPYHF_LIBRARY_DIRS})
|
2020-12-22 20:00:51 +01:00
|
|
|
target_link_libraries(airspyhf_source PUBLIC ${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-05-03 04:20:48 +02:00
|
|
|
target_include_directories(airspyhf_source PUBLIC "/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)
|