1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -04:00

cmake: full refactor to remove qmake and use cmake on all platforms

This commit is contained in:
Davide Gerhard
2019-05-01 11:54:58 +02:00
parent 98e4b77dd9
commit dcfb7f6c97
171 changed files with 2126 additions and 5841 deletions
+31 -27
View File
@@ -1,9 +1,6 @@
project(xtrxinput)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(xtrxinput_SOURCES
xtrxinputgui.cpp
xtrxinput.cpp
xtrxinputplugin.cpp
xtrxinputsettings.cpp
@@ -11,47 +8,54 @@ set(xtrxinput_SOURCES
)
set(xtrxinput_HEADERS
xtrxinputgui.h
xtrxinput.h
xtrxinputplugin.h
xtrxinputsettings.h
xtrxinputthread.h
)
set(xtrxinput_FORMS
xtrxinputgui.ui
)
include_directories(
.
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
${CMAKE_SOURCE_DIR}/devices
${LIBXTRX_INCLUDE_DIRS}
)
add_definitions(${QT_DEFINITIONS})
add_definitions(-DQT_PLUGIN)
add_definitions(-DQT_SHARED)
if(NOT SERVER_MODE)
set(xtrxinput_SOURCES
${xtrxinput_SOURCES}
xtrxinputgui.cpp
qt5_wrap_ui(xtrxinput_FORMS_HEADERS ${xtrxinput_FORMS})
xtrxinputgui.ui
)
set(xtrxinput_HEADERS
${xtrxinput_HEADERS}
xtrxinputgui.h
)
add_library(inputxtrx SHARED
set(TARGET_NAME inputxtrx)
set(TARGET_LIB "Qt5::Widgets")
set(TARGET_LIB_GUI "sdrgui")
set(INSTALL_FOLDER "plugins")
else()
set(TARGET_NAME inputxtrxsrv)
set(TARGET_LIB "")
set(TARGET_LIB_GUI "")
set(INSTALL_FOLDER "pluginssrv")
endif()
add_library(${TARGET_NAME} SHARED
${xtrxinput_SOURCES}
${xtrxinput_HEADERS_MOC}
${xtrxinput_FORMS_HEADERS}
)
target_link_libraries(inputxtrx
${QT_LIBRARIES}
${LIBXTRX_LIBRARY}
target_link_libraries(${TARGET_NAME}
Qt5::Core
${TARGET_LIB}
sdrbase
sdrgui
swagger
xtrxdevice
${TARGET_LIB_GUI}
swagger
${LIBXTRX_LIBRARIES}
xtrxdevice
)
qt5_use_modules(inputxtrx Core Widgets)
install(TARGETS inputxtrx DESTINATION lib/plugins/samplesource)
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_LIB_DIR}/${INSTALL_FOLDER}/samplesource)