2019-05-10 07:20:30 -04:00
|
|
|
project(localsource)
|
|
|
|
|
|
|
|
set(localsource_SOURCES
|
2019-11-14 19:04:24 -05:00
|
|
|
localsource.cpp
|
|
|
|
localsourcebaseband.cpp
|
|
|
|
localsourcesource.cpp
|
2020-07-11 20:54:11 -04:00
|
|
|
localsourceworker.cpp
|
2019-05-10 07:20:30 -04:00
|
|
|
localsourceplugin.cpp
|
2019-08-02 07:14:59 -04:00
|
|
|
localsourcesettings.cpp
|
|
|
|
localsourcewebapiadapter.cpp
|
2019-05-10 07:20:30 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
set(localsource_HEADERS
|
2019-11-14 19:04:24 -05:00
|
|
|
localsource.h
|
|
|
|
localsourcebaseband.h
|
|
|
|
localsourcesource.h
|
2020-07-11 20:54:11 -04:00
|
|
|
localsourceworker.h
|
2019-05-10 07:20:30 -04:00
|
|
|
localsourceplugin.h
|
2019-08-02 07:14:59 -04:00
|
|
|
localsourcesettings.h
|
|
|
|
localsourcewebapiadapter.h
|
2019-05-10 07:20:30 -04:00
|
|
|
)
|
|
|
|
|
2019-05-11 06:20:57 -04:00
|
|
|
include_directories(
|
|
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
2020-11-05 05:11:43 -05:00
|
|
|
${Boost_INCLUDE_DIRS}
|
2019-05-10 07:20:30 -04:00
|
|
|
)
|
|
|
|
|
2019-05-11 06:20:57 -04:00
|
|
|
if(NOT SERVER_MODE)
|
|
|
|
set(localsource_SOURCES
|
|
|
|
${localsource_SOURCES}
|
|
|
|
localsourcegui.cpp
|
|
|
|
|
|
|
|
localsourcegui.ui
|
|
|
|
)
|
|
|
|
set(localsource_HEADERS
|
|
|
|
${localsource_HEADERS}
|
|
|
|
localsourcegui.h
|
|
|
|
)
|
|
|
|
|
|
|
|
set(TARGET_NAME localsource)
|
|
|
|
set(TARGET_LIB "Qt5::Widgets")
|
|
|
|
set(TARGET_LIB_GUI "sdrgui")
|
|
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
|
|
|
else()
|
|
|
|
set(TARGET_NAME localsourcesrv)
|
|
|
|
set(TARGET_LIB "")
|
|
|
|
set(TARGET_LIB_GUI "")
|
|
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(${TARGET_NAME} SHARED
|
2019-05-10 07:20:30 -04:00
|
|
|
${localsource_SOURCES}
|
|
|
|
)
|
|
|
|
|
2019-05-11 06:20:57 -04:00
|
|
|
target_link_libraries(${TARGET_NAME}
|
|
|
|
Qt5::Core
|
|
|
|
${TARGET_LIB}
|
|
|
|
sdrbase
|
|
|
|
${TARGET_LIB_GUI}
|
|
|
|
swagger
|
2019-05-10 07:20:30 -04:00
|
|
|
)
|
|
|
|
|
2019-05-11 06:20:57 -04:00
|
|
|
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
|
2022-02-06 07:56:58 -05:00
|
|
|
|
|
|
|
# Install debug symbols
|
|
|
|
if (WIN32)
|
|
|
|
install(FILES $<TARGET_PDB_FILE:${TARGET_NAME}> CONFIGURATIONS Debug RelWithDebInfo DESTINATION ${INSTALL_FOLDER} )
|
|
|
|
endif()
|