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(sdrplay_source)
|
||||
|
||||
file(GLOB SRC "src/*.cpp")
|
||||
|
||||
add_library(sdrplay_source SHARED ${SRC})
|
||||
target_link_libraries(sdrplay_source PRIVATE sdrpp_core)
|
||||
set_target_properties(sdrplay_source PROPERTIES PREFIX "")
|
||||
|
||||
target_include_directories(sdrplay_source PRIVATE "src/")
|
||||
|
||||
if (MSVC)
|
||||
target_compile_options(sdrplay_source PRIVATE /O2 /Ob2 /std:c++17 /EHsc)
|
||||
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||||
target_compile_options(sdrplay_source PRIVATE -O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
||||
else ()
|
||||
target_compile_options(sdrplay_source PRIVATE -O3 -std=c++17)
|
||||
endif ()
|
||||
include(${SDRPP_MODULE_CMAKE})
|
||||
|
||||
if (MSVC)
|
||||
# Lib path
|
||||
@ -33,7 +21,4 @@ else (MSVC)
|
||||
endif()
|
||||
|
||||
target_link_libraries(sdrplay_source PRIVATE sdrplay_api)
|
||||
endif ()
|
||||
|
||||
# Install directives
|
||||
install(TARGETS sdrplay_source DESTINATION lib/sdrpp/plugins)
|
||||
endif ()
|
Reference in New Issue
Block a user