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