mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-13 20:01:46 -05:00
24d80f8ab0
VOR localizer: Allow plugin to be compiled as static lib. SID feature: Allow plugin to be compiled as static lib. Satellite Tracker: Allow building without texttospeech or timezone. Map: Allow plugin to be compiled as static lib. Allow building without SSL. APT: Allow plugin to be compiled as static lib. Radio Astronomy: Allow plugin to be compiled as static lib. Allow building without process. ChannelWebAPIUtils: Fix memory leaks. DeviceSampleSource: Add signals that indicate when the position or direction of a device (or it's antenna) has changed. This is to support per device position, which is useful for remote devices not at My Position.
73 lines
1.7 KiB
CMake
73 lines
1.7 KiB
CMake
project(vorlocalizer)
|
|
|
|
set(vor_SOURCES
|
|
vorlocalizer.cpp
|
|
vorlocalizersettings.cpp
|
|
vorlocalizerworker.cpp
|
|
vorlocalizerplugin.cpp
|
|
vorlocalizerwebapiadapter.cpp
|
|
vorlocalizerreport.cpp
|
|
)
|
|
|
|
set(vor_HEADERS
|
|
vorlocalizer.h
|
|
vorlocalizersettings.h
|
|
vorlocalizerworker.h
|
|
vorlocalizerplugin.h
|
|
vorlocalizerwebapiadapter.h
|
|
vorlocalizerreport.h
|
|
)
|
|
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
)
|
|
|
|
if(NOT SERVER_MODE)
|
|
set(vor_SOURCES
|
|
${vor_SOURCES}
|
|
vorlocalizergui.cpp
|
|
vorlocalizergui.ui
|
|
vorlocalizermap.qrc
|
|
vorlocalizericons.qrc
|
|
)
|
|
set(vor_HEADERS
|
|
${vor_HEADERS}
|
|
vorlocalizergui.h
|
|
)
|
|
|
|
set(TARGET_NAME ${PLUGINS_PREFIX}vorlocalizer)
|
|
set(TARGET_LIB "Qt::Widgets" Qt::Quick Qt::QuickWidgets Qt::Positioning)
|
|
set(TARGET_LIB_GUI "sdrgui")
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
|
else()
|
|
set(TARGET_NAME ${PLUGINSSRV_PREFIX}vorlocalizersrv)
|
|
set(TARGET_LIB "")
|
|
set(TARGET_LIB_GUI "")
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
|
endif()
|
|
|
|
if(NOT Qt6_FOUND)
|
|
add_library(${TARGET_NAME} ${vor_SOURCES})
|
|
else()
|
|
qt_add_plugin(${TARGET_NAME} CLASS_NAME VORLocalizerPlugin ${vor_SOURCES})
|
|
endif()
|
|
|
|
if(NOT BUILD_SHARED_LIBS)
|
|
set_property(GLOBAL APPEND PROPERTY STATIC_PLUGINS_PROPERTY ${TARGET_NAME})
|
|
endif()
|
|
|
|
target_link_libraries(${TARGET_NAME} PRIVATE
|
|
Qt::Core
|
|
${TARGET_LIB}
|
|
sdrbase
|
|
${TARGET_LIB_GUI}
|
|
)
|
|
|
|
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()
|