mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
76 lines
1.5 KiB
CMake
76 lines
1.5 KiB
CMake
project(remotesink)
|
|
|
|
if (HAS_SSSE3)
|
|
message(STATUS "RemoteSink: use SSSE3 SIMD" )
|
|
elseif (HAS_NEON)
|
|
message(STATUS "RemoteSink: use Neon SIMD" )
|
|
else()
|
|
message(STATUS "RemoteSink: Unsupported architecture")
|
|
return()
|
|
endif()
|
|
|
|
set(remotesink_SOURCES
|
|
remotesink.cpp
|
|
remotesinksettings.cpp
|
|
remotesinkwebapiadapter.cpp
|
|
remotesinkthread.cpp
|
|
remotesinkplugin.cpp
|
|
)
|
|
|
|
set(remotesink_HEADERS
|
|
remotesink.h
|
|
remotesinksettings.h
|
|
remotesinkwebapiadapter.h
|
|
remotesinkthread.h
|
|
remotesinkplugin.h
|
|
)
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
${Boost_INCLUDE_DIRS}
|
|
${CM256CC_INCLUDE_DIR}
|
|
${CUSTOM_WINDOWS_INCLUDE}
|
|
)
|
|
|
|
if(NOT SERVER_MODE)
|
|
set(remotesink_SOURCES
|
|
${remotesink_SOURCES}
|
|
remotesinkgui.cpp
|
|
|
|
remotesinkgui.ui
|
|
)
|
|
set(remotesink_HEADERS
|
|
${remotesink_HEADERS}
|
|
remotesinkgui.h
|
|
)
|
|
|
|
set(TARGET_NAME remotesink)
|
|
set(TARGET_LIB "Qt5::Widgets")
|
|
set(TARGET_LIB_GUI "sdrgui")
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
|
else()
|
|
set(TARGET_NAME remotesinksrv)
|
|
set(TARGET_LIB "")
|
|
set(TARGET_LIB_GUI "")
|
|
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
|
endif()
|
|
|
|
add_library(${TARGET_NAME} SHARED
|
|
${remotesink_SOURCES}
|
|
)
|
|
|
|
if(ENABLE_EXTERNAL_LIBRARIES)
|
|
add_dependencies(${TARGET_NAME} cm256cc)
|
|
endif()
|
|
|
|
target_link_libraries(${TARGET_NAME}
|
|
Qt5::Core
|
|
${TARGET_LIB}
|
|
sdrbase
|
|
${TARGET_LIB_GUI}
|
|
${CM256CC_LIBRARIES}
|
|
swagger
|
|
)
|
|
|
|
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
|