mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-05 00:11:16 -05:00
56 lines
984 B
CMake
56 lines
984 B
CMake
|
project(ais)
|
||
|
|
||
|
set(ais_SOURCES
|
||
|
ais.cpp
|
||
|
aissettings.cpp
|
||
|
aisplugin.cpp
|
||
|
aiswebapiadapter.cpp
|
||
|
)
|
||
|
|
||
|
set(ais_HEADERS
|
||
|
ais.h
|
||
|
aissettings.h
|
||
|
aisplugin.h
|
||
|
aiswebapiadapter.h
|
||
|
)
|
||
|
|
||
|
include_directories(
|
||
|
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
|
||
|
)
|
||
|
|
||
|
if(NOT SERVER_MODE)
|
||
|
set(ais_SOURCES
|
||
|
${ais_SOURCES}
|
||
|
aisgui.cpp
|
||
|
aisgui.ui
|
||
|
ais.qrc
|
||
|
)
|
||
|
set(ais_HEADERS
|
||
|
${ais_HEADERS}
|
||
|
aisgui.h
|
||
|
)
|
||
|
|
||
|
set(TARGET_NAME featureais)
|
||
|
set(TARGET_LIB Qt5::Widgets)
|
||
|
set(TARGET_LIB_GUI "sdrgui")
|
||
|
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
||
|
else()
|
||
|
set(TARGET_NAME featureaissrv)
|
||
|
set(TARGET_LIB "")
|
||
|
set(TARGET_LIB_GUI "")
|
||
|
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
||
|
endif()
|
||
|
|
||
|
add_library(${TARGET_NAME} SHARED
|
||
|
${ais_SOURCES}
|
||
|
)
|
||
|
|
||
|
target_link_libraries(${TARGET_NAME}
|
||
|
Qt5::Core
|
||
|
${TARGET_LIB}
|
||
|
sdrbase
|
||
|
${TARGET_LIB_GUI}
|
||
|
)
|
||
|
|
||
|
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
|