2017-03-05 21:39:34 -05:00
|
|
|
project(modatv)
|
|
|
|
|
|
|
|
set(modatv_SOURCES
|
2019-11-14 19:04:24 -05:00
|
|
|
atvmod.cpp
|
|
|
|
atvmodbaseband.cpp
|
|
|
|
atvmodreport.cpp
|
|
|
|
atvmodsource.cpp
|
2017-03-05 21:39:34 -05:00
|
|
|
atvmodplugin.cpp
|
2019-08-02 07:14:59 -04:00
|
|
|
atvmodsettings.cpp
|
|
|
|
atvmodwebapiadapter.cpp
|
2017-03-05 21:39:34 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
set(modatv_HEADERS
|
|
|
|
atvmod.h
|
2019-11-14 19:04:24 -05:00
|
|
|
atvmodbaseband.h
|
|
|
|
atvmodreport.h
|
|
|
|
atvmodsource.h
|
2017-03-05 21:39:34 -05:00
|
|
|
atvmodplugin.h
|
2019-08-02 07:14:59 -04:00
|
|
|
atvmodsettings.h
|
|
|
|
atvmodwebapiadapter.h
|
2017-03-05 21:39:34 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(
|
2017-03-08 02:36:28 -05:00
|
|
|
${OpenCV_INCLUDE_DIRS}
|
2019-05-01 05:54:58 -04:00
|
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
2017-03-05 21:39:34 -05:00
|
|
|
)
|
|
|
|
|
2019-05-01 05:54:58 -04:00
|
|
|
if(NOT SERVER_MODE)
|
|
|
|
set(modatv_SOURCES
|
|
|
|
${modatv_SOURCES}
|
|
|
|
atvmodgui.cpp
|
|
|
|
|
|
|
|
atvmodgui.ui
|
|
|
|
)
|
|
|
|
set(modatv_HEADERS
|
|
|
|
${modatv_HEADERS}
|
|
|
|
atvmodgui.h
|
|
|
|
)
|
|
|
|
|
|
|
|
set(TARGET_NAME modatv)
|
|
|
|
set(TARGET_LIB "Qt5::Widgets")
|
|
|
|
set(TARGET_LIB_GUI "sdrgui")
|
2019-05-01 09:17:27 -04:00
|
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
2019-05-01 05:54:58 -04:00
|
|
|
else()
|
|
|
|
set(TARGET_NAME modatvsrv)
|
|
|
|
set(TARGET_LIB "")
|
|
|
|
set(TARGET_LIB_GUI "")
|
2019-05-01 09:17:27 -04:00
|
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
2019-05-01 05:54:58 -04:00
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(${TARGET_NAME} SHARED
|
2017-03-05 21:39:34 -05:00
|
|
|
${modatv_SOURCES}
|
|
|
|
)
|
|
|
|
|
2019-05-01 05:54:58 -04:00
|
|
|
target_link_libraries(${TARGET_NAME}
|
|
|
|
Qt5::Core
|
|
|
|
${TARGET_LIB}
|
2017-03-05 21:39:34 -05:00
|
|
|
sdrbase
|
2019-05-01 05:54:58 -04:00
|
|
|
${TARGET_LIB_GUI}
|
|
|
|
swagger
|
2019-05-31 19:31:55 -04:00
|
|
|
"${OpenCV_LIBS}"
|
2017-03-05 21:39:34 -05:00
|
|
|
)
|
|
|
|
|
2019-05-01 09:17:27 -04:00
|
|
|
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
|