mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-19 23:02:43 +00:00
adde contributing.md
This commit is contained in:
19
demo_module/CMakeLists.txt
Normal file
19
demo_module/CMakeLists.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
cmake_minimum_required(VERSION 3.13)
|
||||
project(demo)
|
||||
|
||||
if (MSVC)
|
||||
set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc")
|
||||
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||||
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup -fPIC")
|
||||
else ()
|
||||
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -fPIC")
|
||||
endif ()
|
||||
|
||||
file(GLOB SRC "src/*.cpp")
|
||||
include_directories("src/")
|
||||
|
||||
add_library(demo SHARED ${SRC})
|
||||
set_target_properties(demo PROPERTIES PREFIX "")
|
||||
|
||||
# Install directives
|
||||
install(TARGETS demo DESTINATION lib/sdrpp/plugins)
|
||||
Reference in New Issue
Block a user