2021-04-26 15:03:52 +00:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2020-12-25 23:42:15 +00:00
|
|
|
project(hackrf_source)
|
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc")
|
2021-04-18 17:20:51 +00:00
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
2021-04-18 17:24:56 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup")
|
2021-04-18 17:12:07 +00:00
|
|
|
else ()
|
|
|
|
set(CMAKE_CXX_FLAGS "-O3 -std=c++17")
|
|
|
|
endif ()
|
2020-12-25 23:42:15 +00:00
|
|
|
|
|
|
|
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 "")
|
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
# Lib path
|
2021-04-26 13:12:52 +00:00
|
|
|
target_link_directories(hackrf_source PUBLIC "C:/Program Files/PothosSDR/bin/")
|
2020-12-25 23:42:15 +00: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})
|
2021-04-29 12:30:11 +00:00
|
|
|
target_link_directories(hackrf_source PUBLIC ${LIBHACKRF_LIBRARY_DIRS})
|
2020-12-25 23:42:15 +00:00
|
|
|
target_link_libraries(hackrf_source PUBLIC ${LIBHACKRF_LIBRARIES})
|
2021-04-18 17:12:07 +00:00
|
|
|
endif ()
|
2021-02-11 21:49:33 +00:00
|
|
|
|
|
|
|
# Install directives
|
|
|
|
install(TARGETS hackrf_source DESTINATION lib/sdrpp/plugins)
|