2020-09-19 12:48:34 +02:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2020-08-18 00:56:51 +02:00
|
|
|
project(recorder)
|
|
|
|
|
|
|
|
if (MSVC)
|
2020-12-12 05:34:58 +01:00
|
|
|
set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc")
|
2020-08-18 00:56:51 +02:00
|
|
|
else()
|
2020-09-20 01:36:25 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -fpermissive")
|
2020-08-18 00:56:51 +02:00
|
|
|
endif (MSVC)
|
|
|
|
|
|
|
|
file(GLOB SRC "src/*.cpp")
|
|
|
|
|
2020-09-20 01:36:25 +02:00
|
|
|
include_directories("src/")
|
2020-08-18 00:56:51 +02:00
|
|
|
|
2020-09-20 01:36:25 +02:00
|
|
|
add_library(recorder SHARED ${SRC})
|
|
|
|
target_link_libraries(recorder PRIVATE sdrpp_core)
|
2021-02-11 22:49:33 +01:00
|
|
|
set_target_properties(recorder PROPERTIES PREFIX "")
|
|
|
|
|
|
|
|
# Install directives
|
|
|
|
install(TARGETS recorder DESTINATION lib/sdrpp/plugins)
|