2021-04-26 15:03:52 +00:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2021-03-20 20:53:44 +00:00
|
|
|
project(bladerf_source)
|
|
|
|
|
|
|
|
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 "")
|
|
|
|
|
2021-10-04 00:34:17 +00:00
|
|
|
if (MSVC)
|
|
|
|
target_compile_options(bladerf_source PRIVATE /O2 /Ob2 /std:c++17 /EHsc)
|
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
|
|
target_compile_options(bladerf_source PRIVATE -O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
|
|
|
else ()
|
|
|
|
target_compile_options(bladerf_source PRIVATE -O3 -std=c++17)
|
|
|
|
endif ()
|
|
|
|
|
2021-03-20 20:53:44 +00:00
|
|
|
if (MSVC)
|
|
|
|
# Lib path
|
2021-04-26 13:12:52 +00:00
|
|
|
target_link_directories(bladerf_source PUBLIC "C:/Program Files/PothosSDR/bin/")
|
2021-03-20 20:53:44 +00:00
|
|
|
|
|
|
|
target_link_libraries(bladerf_source PUBLIC bladeRF)
|
|
|
|
else (MSVC)
|
|
|
|
# Not in pkg-config
|
2021-05-03 00:08:49 +00:00
|
|
|
target_link_libraries(bladerf_source PUBLIC bladeRF)
|
2021-05-05 02:31:37 +00:00
|
|
|
|
|
|
|
# Include it because for some reason pkgconfig doesn't look here?
|
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
2021-08-23 12:51:07 +00:00
|
|
|
target_include_directories(bladerf_source PUBLIC "/usr/local/include")
|
2021-05-05 02:31:37 +00:00
|
|
|
endif()
|
2021-04-18 17:12:07 +00:00
|
|
|
endif ()
|
2021-03-20 20:53:44 +00:00
|
|
|
|
|
|
|
# Install directives
|
2021-08-23 12:51:07 +00:00
|
|
|
install(TARGETS bladerf_source DESTINATION lib/sdrpp/plugins)
|