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