1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-21 04:16:34 -04:00
sdrangel/plugins/channelrx/demoddab/CMakeLists.txt
srcejon 1df07b21ae Update CMakeLists.txt to allow static libraries to be built, as well as shared.
Add BUILD_BENCH, BUILD_SHARED_LIBS, ENABLE_AARONIARTSA and ENABLE_METIS options.
2024-09-11 20:16:40 +01:00

76 lines
1.6 KiB
CMake

project(demoddab)
add_definitions(-DDABLIN_AAC_FAAD2)
set(demoddab_SOURCES
dabdemod.cpp
dabdemodsettings.cpp
dabdemodbaseband.cpp
dabdemodsink.cpp
dabdemodplugin.cpp
dabdemodwebapiadapter.cpp
dabdemoddevice.cpp
)
set(demoddab_HEADERS
dabdemod.h
dabdemodsettings.h
dabdemodbaseband.h
dabdemodsink.h
dabdemodplugin.h
dabdemodwebapiadapter.h
dabdemoddevice.h
)
include_directories(
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
${DAB_INCLUDE_DIR}
)
if(NOT SERVER_MODE)
set(demoddab_SOURCES
${demoddab_SOURCES}
dabdemodgui.cpp
dabdemodgui.ui
)
set(demoddab_HEADERS
${demoddab_HEADERS}
dabdemodgui.h
)
set(TARGET_NAME demoddab)
set(TARGET_LIB "Qt::Widgets")
set(TARGET_LIB_GUI "sdrgui")
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
else()
set(TARGET_NAME demoddabsrv)
set(TARGET_LIB "")
set(TARGET_LIB_GUI "")
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
endif()
if(NOT Qt6_FOUND)
add_library(${TARGET_NAME} ${demoddab_SOURCES})
else()
qt_add_plugin(${TARGET_NAME} CLASS_NAME DABDemodPlugin ${demoddab_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}
${DAB_LIBRARIES}
)
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()