cmake_minimum_required(VERSION 3.16) project(FemaSoftware VERSION 0.1 LANGUAGES CXX) set(CMAKE_AUTOUIC ON) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Widgets LinguistTools SvgWidgets Gui Network PrintSupport Positioning Location Qml QuickWidgets) find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets LinguistTools SvgWidgets Gui Network PrintSupport Positioning Location Qml QuickWidgets) set(TS_FILES FemaSoftware_ru_RU.ts) set(PROJECT_SOURCES main.cpp mainwindow.cpp mainwindow.h mainwindow.ui ${TS_FILES} ) if(${QT_VERSION_MAJOR} GREATER_EQUAL 6) qt_add_executable(FemaSoftware MANUAL_FINALIZATION ${PROJECT_SOURCES} resources.qrc sensorwidget.h sensorwidget.cpp httpclient.h httpclient.cpp flowlayout.h flowlayout.cpp sensordialog.h sensordialog.cpp sensordialog.ui sensorgroups_r.h getsensors_p.h getsensors_r.h sensorservice.h sensorlogs.h sensorlogervice.h utils.h utils.cpp savesensorservice.h paginationbar.h paginationbar.cpp alarmdialog.h alarmdialog.cpp alarmdialog.ui alarmwidget.h alarmwidget.cpp incedentwidget.h incedentwidget.cpp alarmsservice.h alarm_r.h journalservice.h logs_r.h qcustomplot.h qcustomplot.cpp plotservice.h logwidget.h logwidget.cpp apiform.h apiform.cpp apiform.ui serverwidget.h serverwidget.cpp .gitignore ) # Define target properties for Android with Qt 6 as: # set_property(TARGET FemaSoftware APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR # ${CMAKE_CURRENT_SOURCE_DIR}/android) # For more information, see https://doc.qt.io/qt-6/qt-add-executable.html#target-creation qt_create_translation(QM_FILES ${CMAKE_SOURCE_DIR} ${TS_FILES}) else() if(ANDROID) add_library(FemaSoftware SHARED ${PROJECT_SOURCES} ) # Define properties for Android with Qt 5 after find_package() calls as: # set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android") else() add_executable(FemaSoftware ${PROJECT_SOURCES} ) endif() qt5_create_translation(QM_FILES ${CMAKE_SOURCE_DIR} ${TS_FILES}) endif() target_link_libraries(FemaSoftware PRIVATE Qt${QT_VERSION_MAJOR}::Widgets Qt${QT_VERSION_MAJOR}::SvgWidgets Qt${QT_VERSION_MAJOR}::Gui Qt${QT_VERSION_MAJOR}::Network Qt${QT_VERSION_MAJOR}::PrintSupport Qt${QT_VERSION_MAJOR}::Positioning Qt${QT_VERSION_MAJOR}::Qml Qt${QT_VERSION_MAJOR}::QuickWidgets Qt${QT_VERSION_MAJOR}::Location) # Qt for iOS sets MACOSX_BUNDLE_GUI_IDENTIFIER automatically since Qt 6.1. # If you are developing for iOS or macOS you should consider setting an # explicit, fixed bundle identifier manually though. if(${QT_VERSION} VERSION_LESS 6.1.0) set(BUNDLE_ID_OPTION MACOSX_BUNDLE_GUI_IDENTIFIER com.example.FemaSoftware) endif() set_target_properties(FemaSoftware PROPERTIES ${BUNDLE_ID_OPTION} MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} MACOSX_BUNDLE TRUE WIN32_EXECUTABLE TRUE ) include(GNUInstallDirs) install(TARGETS FemaSoftware BUNDLE DESTINATION . LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) if(QT_VERSION_MAJOR EQUAL 6) qt_finalize_executable(FemaSoftware) endif()