1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-09-04 22:27:53 -04:00

XTRX output: added missing file in cmake file

This commit is contained in:
f4exb 2020-02-27 11:17:16 +01:00
parent 76711c1d03
commit 6398f4dd42

View File

@ -4,18 +4,20 @@ set(xtrxoutput_SOURCES
xtrxoutput.cpp xtrxoutput.cpp
xtrxoutputplugin.cpp xtrxoutputplugin.cpp
xtrxoutputsettings.cpp xtrxoutputsettings.cpp
xtrxoutputthread.cpp xtrxoutputthread.cpp
xtrxoutputwebapiadapter.cpp
) )
set(xtrxoutput_HEADERS set(xtrxoutput_HEADERS
xtrxoutput.h xtrxoutput.h
xtrxoutputplugin.h xtrxoutputplugin.h
xtrxoutputsettings.h xtrxoutputsettings.h
xtrxoutputthread.h xtrxoutputthread.h
xtrxoutputwebapiadapter.h
) )
include_directories( include_directories(
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client ${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
${CMAKE_SOURCE_DIR}/devices ${CMAKE_SOURCE_DIR}/devices
${LIBXTRX_INCLUDE_DIRS} ${LIBXTRX_INCLUDE_DIRS}
) )
@ -24,7 +26,6 @@ if(NOT SERVER_MODE)
set(xtrxoutput_SOURCES set(xtrxoutput_SOURCES
${xtrxoutput_SOURCES} ${xtrxoutput_SOURCES}
xtrxoutputgui.cpp xtrxoutputgui.cpp
xtrxoutputgui.ui xtrxoutputgui.ui
) )
set(xtrxoutput_HEADERS set(xtrxoutput_HEADERS
@ -48,13 +49,13 @@ add_library(${TARGET_NAME} SHARED
) )
target_link_libraries(${TARGET_NAME} target_link_libraries(${TARGET_NAME}
Qt5::Core Qt5::Core
${TARGET_LIB} ${TARGET_LIB}
sdrbase sdrbase
${TARGET_LIB_GUI} ${TARGET_LIB_GUI}
swagger swagger
${LIBXTRX_LIBRARY} ${LIBXTRX_LIBRARY}
xtrxdevice xtrxdevice
) )
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER}) install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})