sdrangel/plugins/channelrx/demodbfm/CMakeLists.txt

75 lines
1.4 KiB
CMake
Raw Normal View History

project(bfm)
set(bfm_SOURCES
bfmdemod.cpp
bfmdemodsettings.cpp
2019-12-03 12:49:52 -05:00
bfmdemodsink.cpp
bfmdemodbaseband.cpp
bfmdemodreport.cpp
bfmdemodwebapiadapter.cpp
bfmplugin.cpp
2015-12-10 07:39:15 -05:00
rdsdemod.cpp
2015-12-10 21:58:35 -05:00
rdsdecoder.cpp
2015-12-13 03:45:29 -05:00
rdsparser.cpp
rdstmc.cpp
)
set(bfm_HEADERS
bfmdemod.h
bfmdemodsettings.h
2019-12-03 12:49:52 -05:00
bfmdemodsink.h
bfmdemodbaseband.h
bfmdemodreport.h
bfmdemodwebapiadapter.h
bfmplugin.h
2015-12-10 07:39:15 -05:00
rdsdemod.h
2015-12-10 21:58:35 -05:00
rdsdecoder.h
2015-12-13 03:45:29 -05:00
rdsparser.h
rdstmc.h
)
include_directories(
2019-12-03 12:49:52 -05:00
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
${Boost_INCLUDE_DIRS}
)
if(NOT SERVER_MODE)
set(bfm_SOURCES
${bfm_SOURCES}
2019-12-03 12:49:52 -05:00
bfmdemodgui.cpp
bfmdemodgui.ui
)
set(bfm_HEADERS
${bfm_HEADERS}
bfmdemodgui.h
)
set(TARGET_NAME demodbfm)
set(TARGET_LIB "Qt::Widgets")
set(TARGET_LIB_GUI "sdrgui")
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
else()
set(TARGET_NAME demodbfmsrv)
set(TARGET_LIB "")
set(TARGET_LIB_GUI "")
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
endif()
add_library(${TARGET_NAME} SHARED
${bfm_SOURCES}
)
target_link_libraries(${TARGET_NAME}
Qt::Core
2019-12-03 12:49:52 -05:00
${TARGET_LIB}
sdrbase
2019-12-03 12:49:52 -05:00
${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()