mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 07:51:14 -05:00
62 lines
1.2 KiB
CMake
62 lines
1.2 KiB
CMake
project(xtrxoutput)
|
|
|
|
set(xtrxoutput_SOURCES
|
|
xtrxoutput.cpp
|
|
xtrxoutputplugin.cpp
|
|
xtrxoutputsettings.cpp
|
|
xtrxoutputthread.cpp
|
|
xtrxoutputwebapiadapter.cpp
|
|
)
|
|
|
|
set(xtrxoutput_HEADERS
|
|
xtrxoutput.h
|
|
xtrxoutputplugin.h
|
|
xtrxoutputsettings.h
|
|
xtrxoutputthread.h
|
|
xtrxoutputwebapiadapter.h
|
|
)
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
${CMAKE_SOURCE_DIR}/devices
|
|
${LIBXTRX_INCLUDE_DIRS}
|
|
)
|
|
|
|
if(NOT SERVER_MODE)
|
|
set(xtrxoutput_SOURCES
|
|
${xtrxoutput_SOURCES}
|
|
xtrxoutputgui.cpp
|
|
xtrxoutputgui.ui
|
|
)
|
|
set(xtrxoutput_HEADERS
|
|
${xtrxoutput_HEADERS}
|
|
xtrxoutputgui.h
|
|
)
|
|
|
|
set(TARGET_NAME outputxtrx)
|
|
set(TARGET_LIB "Qt5::Widgets")
|
|
set(TARGET_LIB_GUI "sdrgui")
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
|
else()
|
|
set(TARGET_NAME outputxtrxsrv)
|
|
set(TARGET_LIB "")
|
|
set(TARGET_LIB_GUI "")
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
|
endif()
|
|
|
|
add_library(${TARGET_NAME} SHARED
|
|
${xtrxoutput_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(${TARGET_NAME}
|
|
Qt5::Core
|
|
${TARGET_LIB}
|
|
sdrbase
|
|
${TARGET_LIB_GUI}
|
|
swagger
|
|
${LIBXTRX_LIBRARY}
|
|
xtrxdevice
|
|
)
|
|
|
|
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
|