mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
63 lines
1.3 KiB
CMake
63 lines
1.3 KiB
CMake
project(filesource)
|
|
|
|
set(filesource_SOURCES
|
|
filesource.cpp
|
|
filesourcebaseband.cpp
|
|
filesourcereport.cpp
|
|
filesourcesource.cpp
|
|
filesourceplugin.cpp
|
|
filesourcesettings.cpp
|
|
filesourcewebapiadapter.cpp
|
|
)
|
|
|
|
set(filesource_HEADERS
|
|
filesource.h
|
|
filesourcebaseband.h
|
|
filesourcereport.h
|
|
filesourcesource.h
|
|
filesourceplugin.h
|
|
filesourcesettings.h
|
|
filesourcewebapiadapter.h
|
|
)
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
${CUSTOM_WINDOWS_INCLUDE}
|
|
)
|
|
|
|
if(NOT SERVER_MODE)
|
|
set(filesource_SOURCES
|
|
${filesource_SOURCES}
|
|
filesourcegui.cpp
|
|
filesourcegui.ui
|
|
)
|
|
set(filesource_HEADERS
|
|
${filesource_HEADERS}
|
|
filesourcegui.h
|
|
)
|
|
set(TARGET_NAME filesource)
|
|
set(TARGET_LIB "Qt5::Widgets")
|
|
set(TARGET_LIB_GUI "sdrgui")
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
|
else()
|
|
set(TARGET_NAME filesourcesrv)
|
|
set(TARGET_LIB "")
|
|
set(TARGET_LIB_GUI "")
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
|
endif()
|
|
|
|
add_library(${TARGET_NAME} SHARED
|
|
${filesource_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(${TARGET_NAME}
|
|
Qt5::Core
|
|
${TARGET_LIB}
|
|
Qt5::Network
|
|
sdrbase
|
|
${TARGET_LIB_GUI}
|
|
swagger
|
|
)
|
|
|
|
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
|