1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-07-29 20:22:26 -04:00
sdrangel/plugins/feature/skymap/CMakeLists.txt
DreamNik 202fc96de6 Append prefix to plugin name when running on Android.
Android libraries can't be placed inside subdirectory, so to
distinguish plugins from regular libraries the new prefix is used.
2024-09-05 13:37:51 +03:00

87 lines
2.1 KiB
CMake

project(skymap)
set(skymap_SOURCES
skymap.cpp
skymapsettings.cpp
skymapplugin.cpp
skymapwebapiadapter.cpp
webserver.cpp
)
set(skymap_HEADERS
skymap.h
skymapsettings.h
skymapplugin.h
skymapreport.h
skymapwebapiadapter.h
webserver.h
)
include_directories(
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
${Qt${QT_DEFAULT_MAJOR_VERSION}Gui_PRIVATE_INCLUDE_DIRS}
)
if(NOT SERVER_MODE)
set(skymap_SOURCES
${skymap_SOURCES}
skymapgui.cpp
skymapgui.ui
skymapsettingsdialog.cpp
skymapsettingsdialog.ui
websocketserver.cpp
skymap.qrc
webinterface.cpp
wtml.cpp
webview.cpp
icons.qrc
)
set(skymap_HEADERS
${skymap_HEADERS}
skymapgui.h
skymapsettingsdialog.h
skymapmodel.h
skymapitem.h
websocketserver.h
skymaptileserver.h
webinterface.h
wtml.h
webview.h
)
set(TARGET_NAME ${PLUGINS_PREFIX}featureskymap)
set(TARGET_LIB_GUI "sdrgui")
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
if(Qt${QT_DEFAULT_MAJOR_VERSION}WebEngineCore_FOUND)
set(TARGET_LIB "Qt::Widgets" Qt::Positioning Qt::Location Qt::WebEngineCore Qt::WebEngineWidgets)
elseif(Qt${QT_DEFAULT_MAJOR_VERSION}WebEngine_FOUND)
set(TARGET_LIB "Qt::Widgets" Qt::Positioning Qt::Location Qt::WebEngine Qt::WebEngineCore Qt::WebEngineWidgets)
else()
set(TARGET_LIB "Qt::Widgets" Qt::Positioning Qt::Location)
endif()
else()
set(TARGET_NAME ${PLUGINSSRV_PREFIX}featureskymapsrv)
set(TARGET_LIB "")
set(TARGET_LIB_GUI "")
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
endif()
add_library(${TARGET_NAME} SHARED
${skymap_SOURCES}
)
target_link_libraries(${TARGET_NAME}
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()