mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 16:01:14 -05:00
42 lines
776 B
CMake
42 lines
776 B
CMake
project (sdrsrv)
|
|
|
|
set(sdrsrv_SOURCES
|
|
maincore.cpp
|
|
device/deviceset.cpp
|
|
webapi/webapiadaptersrv.cpp
|
|
)
|
|
|
|
set(sdrsrv_HEADERS
|
|
maincore.h
|
|
device/deviceset.h
|
|
webapi/webapiadaptersrv.h
|
|
)
|
|
|
|
if (LIMERFE_FOUND)
|
|
include_directories(${LIMESUITE_INCLUDE_DIR})
|
|
set(sdrgui_LIMERFE_LIB ${LIMESUITE_LIBRARY})
|
|
endif (LIMERFE_FOUND)
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}/exports
|
|
${CMAKE_SOURCE_DIR}/sdrbase
|
|
${CMAKE_SOURCE_DIR}/logging
|
|
${CMAKE_SOURCE_DIR}/httpserver
|
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
|
${OPENGL_INCLUDE_DIR}
|
|
)
|
|
|
|
add_library(sdrsrv SHARED
|
|
${sdrsrv_SOURCES}
|
|
)
|
|
|
|
target_link_libraries(sdrsrv
|
|
Qt5::Core
|
|
Qt5::Multimedia
|
|
sdrbase
|
|
logging
|
|
)
|
|
|
|
install(TARGETS sdrsrv DESTINATION ${INSTALL_LIB_DIR})
|
|
|