sdrangel/plugins/channelrx/demodam/CMakeLists.txt

68 lines
1.3 KiB
CMake
Raw Normal View History

2015-05-11 20:53:35 -04:00
project(am)
set(am_SOURCES
amdemod.cpp
2019-11-23 01:39:57 -05:00
amdemodsettings.cpp
amdemodbaseband.cpp
amdemodsink.cpp
amdemodplugin.cpp
amdemodwebapiadapter.cpp
2015-05-11 20:53:35 -04:00
)
set(am_HEADERS
amdemod.h
2019-11-23 01:39:57 -05:00
amdemodsettings.h
amdemodbaseband.h
amdemodsink.h
amdemodplugin.h
amdemodwebapiadapter.h
2015-05-11 20:53:35 -04:00
)
include_directories(
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
2015-05-11 20:53:35 -04:00
)
if(NOT SERVER_MODE)
set(am_SOURCES
${am_SOURCES}
amdemodgui.cpp
amdemodssbdialog.cpp
amdemodgui.ui
amdemodssb.ui
)
set(am_HEADERS
${am_HEADERS}
2019-11-23 01:39:57 -05:00
amdemodgui.h
amdemodssbdialog.h
)
set(TARGET_NAME demodam)
set(TARGET_LIB "Qt::Widgets")
set(TARGET_LIB_GUI "sdrgui")
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
else()
set(TARGET_NAME demodamsrv)
set(TARGET_LIB "")
set(TARGET_LIB_GUI "")
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
endif()
add_library(${TARGET_NAME} SHARED
2015-05-11 20:53:35 -04:00
${am_SOURCES}
)
target_link_libraries(${TARGET_NAME}
Qt::Core
2019-11-23 01:39:57 -05:00
${TARGET_LIB}
2015-05-11 20:53:35 -04:00
sdrbase
${TARGET_LIB_GUI}
2015-05-11 20:53:35 -04:00
)
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()