mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-02 16:01:14 -04:00
59 lines
1.2 KiB
CMake
59 lines
1.2 KiB
CMake
project(demodpacket)
|
|
|
|
set(demodpacket_SOURCES
|
|
packetdemod.cpp
|
|
packetdemodsettings.cpp
|
|
packetdemodbaseband.cpp
|
|
packetdemodsink.cpp
|
|
packetdemodplugin.cpp
|
|
packetdemodwebapiadapter.cpp
|
|
)
|
|
|
|
set(demodpacket_HEADERS
|
|
packetdemod.h
|
|
packetdemodsettings.h
|
|
packetdemodbaseband.h
|
|
packetdemodsink.h
|
|
packetdemodplugin.h
|
|
packetdemodwebapiadapter.h
|
|
)
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
)
|
|
|
|
if(NOT SERVER_MODE)
|
|
set(demodpacket_SOURCES
|
|
${demodpacket_SOURCES}
|
|
packetdemodgui.cpp
|
|
packetdemodgui.ui
|
|
)
|
|
set(demodpacket_HEADERS
|
|
${demodpacket_HEADERS}
|
|
packetdemodgui.h
|
|
)
|
|
|
|
set(TARGET_NAME demodpacket)
|
|
set(TARGET_LIB "Qt5::Widgets" Qt5::Quick Qt5::QuickWidgets Qt5::Positioning)
|
|
set(TARGET_LIB_GUI "sdrgui")
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
|
else()
|
|
set(TARGET_NAME demodpacketsrv)
|
|
set(TARGET_LIB "")
|
|
set(TARGET_LIB_GUI "")
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
|
endif()
|
|
|
|
add_library(${TARGET_NAME} SHARED
|
|
${demodpacket_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(${TARGET_NAME}
|
|
Qt5::Core
|
|
${TARGET_LIB}
|
|
sdrbase
|
|
${TARGET_LIB_GUI}
|
|
)
|
|
|
|
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
|