mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-07-07 17:54:42 +02:00
new cmake stuff
This commit is contained in:
@ -3,19 +3,7 @@ project(spectran_source)
|
||||
|
||||
file(GLOB SRC "src/*.cpp")
|
||||
|
||||
add_library(spectran_source SHARED ${SRC})
|
||||
target_link_libraries(spectran_source PRIVATE sdrpp_core)
|
||||
set_target_properties(spectran_source PROPERTIES PREFIX "")
|
||||
|
||||
target_include_directories(spectran_source PRIVATE "src/")
|
||||
|
||||
if (MSVC)
|
||||
target_compile_options(spectran_source PRIVATE /O2 /Ob2 /std:c++17 /EHsc)
|
||||
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||||
target_compile_options(spectran_source PRIVATE -O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
||||
else ()
|
||||
target_compile_options(spectran_source PRIVATE -O3 -std=c++17)
|
||||
endif ()
|
||||
include(${SDRPP_MODULE_CMAKE})
|
||||
|
||||
if (MSVC)
|
||||
# Lib path
|
||||
@ -32,6 +20,3 @@ else (MSVC)
|
||||
|
||||
target_link_libraries(spectran_source PRIVATE AaroniaRTSAAPI)
|
||||
endif ()
|
||||
|
||||
# Install directives
|
||||
install(TARGETS spectran_source DESTINATION lib/sdrpp/plugins)
|
||||
|
Reference in New Issue
Block a user