2020-10-01 13:46:12 +02:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2020-12-08 04:36:37 +01:00
|
|
|
project(soapy_source)
|
2020-10-01 13:46:12 +02:00
|
|
|
|
|
|
|
if (MSVC)
|
2020-12-12 05:34:58 +01:00
|
|
|
set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc")
|
2020-10-01 13:46:12 +02:00
|
|
|
else()
|
|
|
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -fpermissive")
|
|
|
|
endif (MSVC)
|
|
|
|
|
|
|
|
file(GLOB SRC "src/*.cpp")
|
|
|
|
|
2020-12-08 04:36:37 +01:00
|
|
|
add_library(soapy_source SHARED ${SRC})
|
|
|
|
target_link_libraries(soapy_source PRIVATE sdrpp_core)
|
|
|
|
set_target_properties(soapy_source PROPERTIES PREFIX "")
|
2020-10-02 01:44:18 +02:00
|
|
|
|
2020-10-23 04:53:48 +02:00
|
|
|
if (MSVC)
|
|
|
|
# Lib path
|
|
|
|
target_link_directories(sdrpp_core PUBLIC "C:/Program Files/PothosSDR/lib/")
|
|
|
|
|
|
|
|
# Misc headers
|
|
|
|
target_include_directories(sdrpp_core PUBLIC "C:/Program Files/PothosSDR/include/")
|
|
|
|
else (MSVC)
|
2020-10-23 04:25:02 +02:00
|
|
|
find_package(PkgConfig)
|
|
|
|
|
2020-10-23 04:53:48 +02:00
|
|
|
pkg_check_modules(SOAPY REQUIRED SoapySDR)
|
2020-10-23 04:25:02 +02:00
|
|
|
|
2020-12-08 04:36:37 +01:00
|
|
|
target_include_directories(soapy_source PUBLIC ${SOAPY_INCLUDE_DIRS})
|
|
|
|
target_link_directories(soapy_source PUBLIC ${SOAPY_LIBRARY_DIRS})
|
|
|
|
target_link_libraries(soapy_source PUBLIC ${SOAPY_LIBRARIES})
|
2020-10-23 04:53:48 +02:00
|
|
|
endif (MSVC)
|