kopia lustrzana https://github.com/AlexandreRouma/SDRPlusPlus
14 wiersze
363 B
CMake
14 wiersze
363 B
CMake
![]() |
cmake_minimum_required(VERSION 3.13)
|
||
|
project(file_source)
|
||
|
|
||
|
if (MSVC)
|
||
|
set(CMAKE_CXX_FLAGS "-O2 /std:c++17")
|
||
|
else()
|
||
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -fpermissive")
|
||
|
endif (MSVC)
|
||
|
|
||
|
file(GLOB SRC "src/*.cpp")
|
||
|
|
||
|
add_library(file_source SHARED ${SRC})
|
||
|
target_link_libraries(file_source PRIVATE sdrpp_core)
|
||
|
set_target_properties(file_source PROPERTIES PREFIX "")
|