2021-06-28 02:22:51 +02:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
|
|
project(limesdr_source)
|
|
|
|
|
|
|
|
file(GLOB SRC "src/*.cpp")
|
|
|
|
|
2023-02-14 16:25:05 +01:00
|
|
|
include(${SDRPP_MODULE_CMAKE})
|
2021-10-04 02:34:17 +02:00
|
|
|
|
2021-06-28 02:22:51 +02:00
|
|
|
if (MSVC)
|
|
|
|
# Lib path
|
2021-10-04 03:31:13 +02:00
|
|
|
target_link_directories(limesdr_source PRIVATE "C:/Program Files/PothosSDR/lib")
|
2021-06-28 02:22:51 +02:00
|
|
|
|
2021-10-04 03:31:13 +02:00
|
|
|
target_link_libraries(limesdr_source PRIVATE LimeSuite)
|
2021-06-28 02:22:51 +02:00
|
|
|
else (MSVC)
|
|
|
|
find_package(PkgConfig)
|
|
|
|
|
|
|
|
# Not in pkg-config
|
2021-10-04 03:31:13 +02:00
|
|
|
target_link_libraries(limesdr_source PRIVATE LimeSuite)
|
2021-06-28 02:22:51 +02:00
|
|
|
|
|
|
|
# Include it because for some reason pkgconfig doesn't look here?
|
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
2023-01-13 22:05:01 +01:00
|
|
|
target_include_directories(limesdr_source PRIVATE "/usr/local/include")
|
2021-06-28 02:22:51 +02:00
|
|
|
endif()
|
2023-02-14 16:25:05 +01:00
|
|
|
endif ()
|