1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-16 18:06:35 -04:00
sdrangel/plugins/channeltx/modatv/CMakeLists.txt
Jon Beniston b760c44101 Add support for building additional 3rd party libraries.
Update MacOS bundling to use macdeployqt rather than fixup_bundle, so all Qt dependencies are included.
Update building of some libraries on MacOS, so that library paths in dylibs are build paths, rather than install paths, so macdeployqt can find them.
2022-05-16 13:48:29 +01:00

74 lines
1.4 KiB
CMake

project(modatv)
set(modatv_SOURCES
atvmod.cpp
atvmodbaseband.cpp
atvmodreport.cpp
atvmodsource.cpp
atvmodplugin.cpp
atvmodsettings.cpp
atvmodwebapiadapter.cpp
)
set(modatv_HEADERS
atvmod.h
atvmodbaseband.h
atvmodreport.h
atvmodsource.h
atvmodplugin.h
atvmodsettings.h
atvmodwebapiadapter.h
)
include_directories(
${OpenCV_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
)
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")
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
else()
set(TARGET_NAME modatvsrv)
set(TARGET_LIB "")
set(TARGET_LIB_GUI "")
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
endif()
add_library(${TARGET_NAME} SHARED
${modatv_SOURCES}
)
target_link_libraries(${TARGET_NAME}
Qt5::Core
${TARGET_LIB}
sdrbase
${TARGET_LIB_GUI}
swagger
"${OpenCV_LIBS}"
)
if(OpenCV_EXTERNAL)
add_dependencies(${TARGET_NAME} opencv)
endif()
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
# Install debug symbols
if (WIN32)
install(FILES $<TARGET_PDB_FILE:${TARGET_NAME}> CONFIGURATIONS Debug RelWithDebInfo DESTINATION ${INSTALL_FOLDER} )
endif()