kopia lustrzana https://github.com/AlexandreRouma/SDRPlusPlus
21 wiersze
576 B
CMake
21 wiersze
576 B
CMake
![]() |
cmake_minimum_required(VERSION 3.13)
|
||
![]() |
project(demo)
|
||
|
|
||
|
if (MSVC)
|
||
![]() |
add_compile_options(/O2 /Ob2 /std:c++17 /EHsc)
|
||
![]() |
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||
![]() |
add_compile_options(-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
||
![]() |
else ()
|
||
![]() |
add_compile_options(-O3 -std=c++17)
|
||
![]() |
endif ()
|
||
|
|
||
|
file(GLOB SRC "src/*.cpp")
|
||
![]() |
|
||
![]() |
include_directories("src/")
|
||
|
|
||
|
add_library(demo SHARED ${SRC})
|
||
![]() |
target_link_libraries(demo PRIVATE sdrpp_core)
|
||
![]() |
set_target_properties(demo PROPERTIES PREFIX "")
|
||
|
|
||
|
# Install directives
|
||
|
install(TARGETS demo DESTINATION lib/sdrpp/plugins)
|