93 lines
2.7 KiB
CMake
93 lines
2.7 KiB
CMake
cmake_minimum_required(VERSION 3.14)
|
|
|
|
project(TksiMonitor 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 Core Quick SerialPort LinguistTools)
|
|
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Core Quick SerialPort LinguistTools)
|
|
|
|
set(TS_FILES translations/TksiMonitor_ru_RU.ts)
|
|
|
|
set(PROJECT_SOURCES
|
|
sources/main.cpp
|
|
sources/DataController.h
|
|
sources/DataController.cpp
|
|
resources/resources.qrc
|
|
qml/qml.qrc
|
|
${TS_FILES}
|
|
)
|
|
|
|
include_directories(sources)
|
|
|
|
list(APPEND QML_IMPORT_PATH ${CMAKE_CURRENT_SOURCE_DIR}/qml)
|
|
list(REMOVE_DUPLICATES QML_IMPORT_PATH)
|
|
|
|
set(QML_IMPORT_PATH ${QML_IMPORT_PATH}
|
|
CACHE STRING "Qt Creator qml import paths"
|
|
FORCE
|
|
)
|
|
|
|
if(${QT_VERSION_MAJOR} GREATER_EQUAL 6)
|
|
qt_add_executable(TksiMonitor
|
|
MANUAL_FINALIZATION
|
|
${PROJECT_SOURCES}
|
|
)
|
|
# Define target properties for Android with Qt 6 as:
|
|
# set_property(TARGET TksiMonitor 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(TksiMonitor 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(TksiMonitor
|
|
${PROJECT_SOURCES}
|
|
)
|
|
endif()
|
|
|
|
qt5_create_translation(QM_FILES ${CMAKE_SOURCE_DIR} ${TS_FILES})
|
|
endif()
|
|
|
|
target_link_libraries(TksiMonitor
|
|
PRIVATE
|
|
Qt${QT_VERSION_MAJOR}::Core
|
|
Qt${QT_VERSION_MAJOR}::Quick
|
|
Qt${QT_VERSION_MAJOR}::SerialPort
|
|
)
|
|
|
|
# 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.TksiMonitor)
|
|
endif()
|
|
set_target_properties(TksiMonitor 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 TksiMonitor
|
|
BUNDLE DESTINATION .
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
|
|
if(QT_VERSION_MAJOR EQUAL 6)
|
|
qt_import_qml_plugins(TksiMonitor)
|
|
qt_finalize_executable(TksiMonitor)
|
|
endif()
|