kopia lustrzana https://github.com/AlexandreRouma/SDRPlusPlus
43 wiersze
1.5 KiB
CMake
43 wiersze
1.5 KiB
CMake
![]() |
cmake_minimum_required(VERSION 3.13)
|
||
![]() |
project(plutosdr_source)
|
||
|
|
||
|
if (MSVC)
|
||
![]() |
add_compile_options(/O2 /Ob2 /std:c++17 /EHsc)
|
||
![]() |
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||
![]() |
add_compile_options(-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
||
![]() |
else ()
|
||
![]() |
add_compile_options(-O3 -std=c++17)
|
||
![]() |
endif ()
|
||
![]() |
|
||
|
include_directories("src/")
|
||
|
|
||
|
file(GLOB SRC "src/*.cpp")
|
||
|
|
||
|
add_library(plutosdr_source SHARED ${SRC})
|
||
|
target_link_libraries(plutosdr_source PRIVATE sdrpp_core)
|
||
|
set_target_properties(plutosdr_source PROPERTIES PREFIX "")
|
||
|
|
||
|
if (MSVC)
|
||
|
# Lib path
|
||
![]() |
target_link_directories(plutosdr_source PUBLIC "C:/Program Files/PothosSDR/lib/")
|
||
|
target_include_directories(plutosdr_source PUBLIC "C:/Program Files/PothosSDR/include/")
|
||
![]() |
|
||
|
target_link_libraries(plutosdr_source PUBLIC libiio)
|
||
![]() |
target_link_libraries(plutosdr_source PUBLIC libad9361)
|
||
![]() |
else (MSVC)
|
||
|
find_package(PkgConfig)
|
||
|
|
||
![]() |
pkg_check_modules(LIBIIO REQUIRED libiio)
|
||
|
pkg_check_modules(LIBAD9361 REQUIRED libad9361)
|
||
![]() |
|
||
![]() |
target_include_directories(plutosdr_source PUBLIC ${LIBIIO_INCLUDE_DIRS})
|
||
![]() |
target_link_directories(plutosdr_source PUBLIC ${LIBIIO_LIBRARY_DIRS})
|
||
![]() |
target_link_libraries(plutosdr_source PUBLIC ${LIBIIO_LIBRARIES})
|
||
|
|
||
|
target_include_directories(plutosdr_source PUBLIC ${LIBAD9361_INCLUDE_DIRS})
|
||
![]() |
target_link_directories(plutosdr_source PUBLIC ${LIBAD9361_LIBRARY_DIRS})
|
||
![]() |
target_link_libraries(plutosdr_source PUBLIC ${LIBAD9361_LIBRARIES})
|
||
![]() |
endif ()
|
||
![]() |
|
||
|
# Install directives
|
||
|
install(TARGETS plutosdr_source DESTINATION lib/sdrpp/plugins)
|