2019-01-22 18:44:13 -05:00
|
|
|
project(remotesource)
|
|
|
|
|
|
|
|
if (HAS_SSSE3)
|
|
|
|
message(STATUS "RemoteSource: use SSSE3 SIMD" )
|
|
|
|
elseif (HAS_NEON)
|
|
|
|
message(STATUS "RemoteSource: use Neon SIMD" )
|
|
|
|
else()
|
|
|
|
message(STATUS "RemoteSource: Unsupported architecture")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(remotesource_SOURCES
|
|
|
|
remotesource.cpp
|
|
|
|
remotesourcethread.cpp
|
|
|
|
remotesourceplugin.cpp
|
|
|
|
remotesourcesettings.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(remotesource_HEADERS
|
|
|
|
remotesource.h
|
|
|
|
remotesourcethread.h
|
|
|
|
remotesourceplugin.h
|
|
|
|
remotesourcesettings.h
|
|
|
|
)
|
|
|
|
|
2019-05-01 05:54:58 -04:00
|
|
|
include_directories(
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
|
|
${CM256CC_INCLUDE_DIR}
|
2019-01-22 18:44:13 -05:00
|
|
|
)
|
|
|
|
|
2019-05-01 05:54:58 -04:00
|
|
|
if(NOT SERVER_MODE)
|
|
|
|
set(remotesource_SOURCES
|
|
|
|
${remotesource_SOURCES}
|
|
|
|
remotesourcegui.cpp
|
2019-01-22 18:44:13 -05:00
|
|
|
|
2019-05-01 05:54:58 -04:00
|
|
|
remotesourcegui.ui
|
|
|
|
)
|
|
|
|
set(remotesource_HEADERS
|
|
|
|
${remotesource_HEADERS}
|
|
|
|
remotesourcegui.h
|
|
|
|
)
|
2019-01-22 18:44:13 -05:00
|
|
|
|
2019-05-01 05:54:58 -04:00
|
|
|
set(TARGET_NAME remotesource)
|
|
|
|
set(TARGET_LIB "Qt5::Widgets")
|
|
|
|
set(TARGET_LIB_GUI "sdrgui")
|
2019-05-01 09:17:27 -04:00
|
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
2019-05-01 05:54:58 -04:00
|
|
|
else()
|
|
|
|
set(TARGET_NAME remotesourcesrv)
|
|
|
|
set(TARGET_LIB "")
|
|
|
|
set(TARGET_LIB_GUI "")
|
2019-05-01 09:17:27 -04:00
|
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
2019-05-01 05:54:58 -04:00
|
|
|
endif()
|
2019-01-22 18:44:13 -05:00
|
|
|
|
2019-05-01 05:54:58 -04:00
|
|
|
add_library(${TARGET_NAME} SHARED
|
|
|
|
${remotesource_SOURCES}
|
2019-01-22 18:44:13 -05:00
|
|
|
)
|
|
|
|
|
2019-05-01 05:54:58 -04:00
|
|
|
target_link_libraries(${TARGET_NAME}
|
|
|
|
Qt5::Core
|
|
|
|
${TARGET_LIB}
|
|
|
|
Qt5::Network
|
|
|
|
sdrbase
|
|
|
|
${TARGET_LIB_GUI}
|
|
|
|
swagger
|
|
|
|
${CM256CC_LIBRARIES}
|
2019-01-22 18:44:13 -05:00
|
|
|
)
|
|
|
|
|
2019-05-01 09:17:27 -04:00
|
|
|
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
|