SDRPlusPlus/source_modules/hackrf_source/CMakeLists.txt

36 lines
1.2 KiB
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.13)
2020-12-26 00:42:15 +01:00
project(hackrf_source)
include_directories("src/")
file(GLOB SRC "src/*.cpp")
add_library(hackrf_source SHARED ${SRC})
target_link_libraries(hackrf_source PRIVATE sdrpp_core)
set_target_properties(hackrf_source PROPERTIES PREFIX "")
2021-10-04 02:34:17 +02:00
if (MSVC)
target_compile_options(hackrf_source PRIVATE /O2 /Ob2 /std:c++17 /EHsc)
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
target_compile_options(hackrf_source PRIVATE -O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
else ()
target_compile_options(hackrf_source PRIVATE -O3 -std=c++17)
endif ()
2020-12-26 00:42:15 +01:00
if (MSVC)
# Lib path
target_link_directories(hackrf_source PUBLIC "C:/Program Files/PothosSDR/bin/")
2020-12-26 00:42:15 +01:00
target_link_libraries(hackrf_source PUBLIC hackrf)
else (MSVC)
find_package(PkgConfig)
pkg_check_modules(LIBHACKRF REQUIRED libhackrf)
target_include_directories(hackrf_source PUBLIC ${LIBHACKRF_INCLUDE_DIRS})
target_link_directories(hackrf_source PUBLIC ${LIBHACKRF_LIBRARY_DIRS})
2020-12-26 00:42:15 +01:00
target_link_libraries(hackrf_source PUBLIC ${LIBHACKRF_LIBRARIES})
2021-04-18 19:12:07 +02:00
endif ()
2021-02-11 22:49:33 +01:00
# Install directives
install(TARGETS hackrf_source DESTINATION lib/sdrpp/plugins)