mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-05 08:21:16 -05:00
63 lines
1.3 KiB
CMake
63 lines
1.3 KiB
CMake
project(soapysdrinput)
|
|
|
|
set(soapysdrinput_SOURCES
|
|
soapysdrinput.cpp
|
|
soapysdrinputplugin.cpp
|
|
soapysdrinputsettings.cpp
|
|
soapysdrinputwebapiadapter.cpp
|
|
soapysdrinputthread.cpp
|
|
)
|
|
|
|
set(soapysdrinput_HEADERS
|
|
soapysdrinput.h
|
|
soapysdrinputplugin.h
|
|
soapysdrinputsettings.h
|
|
soapysdrinputwebapiadapter.h
|
|
soapysdrinputthread.h
|
|
)
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
${CMAKE_SOURCE_DIR}/devices
|
|
${SOAPYSDR_INCLUDE_DIR}
|
|
)
|
|
|
|
if(NOT SERVER_MODE)
|
|
set(soapysdrinput_SOURCES
|
|
${soapysdrinput_SOURCES}
|
|
soapysdrinputgui.cpp
|
|
|
|
soapysdrinputgui.ui
|
|
)
|
|
set(soapysdrinput_HEADERS
|
|
${soapysdrinput_HEADERS}
|
|
soapysdrinputgui.h
|
|
)
|
|
|
|
set(TARGET_NAME inputsoapysdr)
|
|
set(TARGET_LIB "Qt5::Widgets")
|
|
set(TARGET_LIB_GUI "sdrgui")
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
|
else()
|
|
set(TARGET_NAME inputsoapysdrsrv)
|
|
set(TARGET_LIB "")
|
|
set(TARGET_LIB_GUI "")
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
|
endif()
|
|
|
|
add_library(${TARGET_NAME} SHARED
|
|
${soapysdrinput_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(${TARGET_NAME}
|
|
Qt5::Core
|
|
${TARGET_LIB}
|
|
sdrbase
|
|
${TARGET_LIB_GUI}
|
|
swagger
|
|
${SOAPYSDR_LIBRARY}
|
|
soapysdrdevice
|
|
)
|
|
|
|
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
|