mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-20 07:12:43 +00:00
added rx888
This commit is contained in:
17
rx888_source/CMakeLists.txt
Normal file
17
rx888_source/CMakeLists.txt
Normal file
@@ -0,0 +1,17 @@
|
||||
cmake_minimum_required(VERSION 3.13)
|
||||
project(rx888_source)
|
||||
|
||||
if (MSVC)
|
||||
set(CMAKE_CXX_FLAGS "-O2 /std:c++17")
|
||||
else()
|
||||
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -fpermissive")
|
||||
endif (MSVC)
|
||||
|
||||
include_directories("src/CyAPI")
|
||||
|
||||
file(GLOB SRC "src/*.cpp")
|
||||
file(GLOB CYAPI "src/CyAPI/*.cpp")
|
||||
|
||||
add_library(rx888_source SHARED ${SRC} ${CYAPI})
|
||||
target_link_libraries(rx888_source PRIVATE sdrpp_core)
|
||||
set_target_properties(rx888_source PROPERTIES PREFIX "")
|
||||
Reference in New Issue
Block a user