2021-08-16 18:49:00 +02:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
|
|
project(scanner)
|
|
|
|
|
|
|
|
if (MSVC)
|
2021-10-03 01:13:15 +02:00
|
|
|
add_compile_options(/O2 /std:c++17 /EHsc)
|
2021-08-16 18:49:00 +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-08-16 18:49:00 +02:00
|
|
|
else ()
|
2021-10-03 01:13:15 +02:00
|
|
|
add_compile_options(-O3 -std=c++17)
|
2021-08-16 18:49:00 +02:00
|
|
|
endif ()
|
|
|
|
|
|
|
|
file(GLOB SRC "src/*.cpp")
|
|
|
|
|
|
|
|
include_directories("src/")
|
|
|
|
|
|
|
|
add_library(scanner SHARED ${SRC})
|
|
|
|
target_link_libraries(scanner PRIVATE sdrpp_core)
|
|
|
|
set_target_properties(scanner PROPERTIES PREFIX "")
|
|
|
|
|
|
|
|
# Install directives
|
|
|
|
install(TARGETS scanner DESTINATION lib/sdrpp/plugins)
|