mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
53 lines
926 B
CMake
53 lines
926 B
CMake
project(soapysdrdevice)
|
|
|
|
set (CMAKE_CXX_STANDARD 11)
|
|
|
|
set(soapysdrdevice_SOURCES
|
|
devicesoapysdr.cpp
|
|
devicesoapysdrscan.cpp
|
|
devicesoapysdrshared.cpp
|
|
devicesoapysdrparams.cpp
|
|
)
|
|
|
|
set(soapysdrdevice_HEADERS
|
|
devicesoapysdr.h
|
|
devicesoapysdrscan.h
|
|
devicesoapysdrshared.h
|
|
devicesoapysdrparams.h
|
|
)
|
|
|
|
if (BUILD_DEBIAN)
|
|
include_directories(
|
|
.
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${SOAPYSDRSRC}
|
|
)
|
|
else (BUILD_DEBIAN)
|
|
include_directories(
|
|
.
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${SOAPYSDR_INCLUDE_DIR}
|
|
)
|
|
endif (BUILD_DEBIAN)
|
|
|
|
#add_definitions(${QT_DEFINITIONS})
|
|
#add_definitions(-DQT_SHARED)
|
|
|
|
add_library(soapysdrdevice SHARED
|
|
${soapysdrdevice_SOURCES}
|
|
)
|
|
|
|
if (BUILD_DEBIAN)
|
|
target_link_libraries(soapysdrdevice
|
|
soapysdr
|
|
sdrbase
|
|
)
|
|
else (BUILD_DEBIAN)
|
|
target_link_libraries(soapysdrdevice
|
|
${SOAPYSDR_LIBRARY}
|
|
sdrbase
|
|
)
|
|
endif (BUILD_DEBIAN)
|
|
|
|
install(TARGETS soapysdrdevice DESTINATION lib)
|