mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-07 11:17:35 +01:00
29 lines
768 B
CMake
29 lines
768 B
CMake
|
cmake_minimum_required(VERSION 3.13)
|
||
|
project(bladerf_source)
|
||
|
|
||
|
if (MSVC)
|
||
|
set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc")
|
||
|
else()
|
||
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -fpermissive")
|
||
|
endif (MSVC)
|
||
|
|
||
|
include_directories("src/")
|
||
|
|
||
|
file(GLOB SRC "src/*.cpp")
|
||
|
|
||
|
add_library(bladerf_source SHARED ${SRC})
|
||
|
target_link_libraries(bladerf_source PRIVATE sdrpp_core)
|
||
|
set_target_properties(bladerf_source PROPERTIES PREFIX "")
|
||
|
|
||
|
if (MSVC)
|
||
|
# Lib path
|
||
|
target_link_directories(sdrpp_core PUBLIC "C:/Program Files/PothosSDR/bin/")
|
||
|
|
||
|
target_link_libraries(bladerf_source PUBLIC bladeRF)
|
||
|
else (MSVC)
|
||
|
# Not in pkg-config
|
||
|
target_link_libraries(bladerf_source PUBLIC libbladeRF)
|
||
|
endif (MSVC)
|
||
|
|
||
|
# Install directives
|
||
|
install(TARGETS bladerf_source DESTINATION lib/sdrpp/plugins)
|