This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
95 lines (84 loc) · 3.26 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
cmake_minimum_required(VERSION 3.5)
project(ObjectOrientedProgramming VERSION 1.0 LANGUAGES CXX)
if(CMAKE_SYSTEM_NAME MATCHES "Windows") # If you are using Windows
set(CMAKE_PREFIX_PATH "C:/Qt/6.5.0/mingw_64") # You need to change this path to your Qt MinGW path
endif()
find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Widgets Charts)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets Charts)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(PROJECT_SOURCES
src/main.cpp
src/ElevatorShaft.cpp
src/MainWindow.cpp
src/building.cpp
src/elevator.cpp
src/floor.cpp
src/monitor.cpp
src/passenger.cpp
src/Chart.cpp
src/statistics.cpp
src/LineChart.cpp
include/ElevatorShaft.h
include/MainWindow.h
include/building.h
include/elevator.h
include/floor.h
include/monitor.h
include/passenger.h
include/Chart.h
include/statistics.h
include/LineChart.h
)
if(${QT_VERSION_MAJOR} GREATER_EQUAL 6)
qt_add_executable(ObjectOrientedProgramming
MANUAL_FINALIZATION
${PROJECT_SOURCES}
)
# Define target properties for Android with Qt 6 as:
# set_property(TARGET ObjectOrientedProgramming 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
else()
if(ANDROID)
add_library(ObjectOrientedProgramming 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(ObjectOrientedProgramming
${PROJECT_SOURCES}
)
endif()
endif()
target_include_directories(ObjectOrientedProgramming PRIVATE ${PROJECT_SOURCE_DIR}/include)
target_link_libraries(ObjectOrientedProgramming PRIVATE Qt${QT_VERSION_MAJOR}::Widgets Qt${QT_VERSION_MAJOR}::Charts)
set_target_properties(ObjectOrientedProgramming PROPERTIES
MACOSX_BUNDLE_GUI_IDENTIFIER my.example.com
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
MACOSX_BUNDLE ON
WIN32_EXECUTABLE ON
)
install(TARGETS ObjectOrientedProgramming
BUNDLE DESTINATION .
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
if(QT_VERSION_MAJOR EQUAL 6)
qt_finalize_executable(ObjectOrientedProgramming)
endif()
# 检查当前操作系统
if(APPLE)
set(CONFIG_PATH "${CMAKE_BINARY_DIR}/${PROJECT_NAME}.app/Contents/MacOS")
elseif(WIN32)
set(CONFIG_PATH "${CMAKE_BINARY_DIR}")
else()
message(FATAL_ERROR "Unsupported operating system")
endif()
# 将配置文件复制到相应的目录
file(COPY ${CMAKE_SOURCE_DIR}/resources/data/config.json DESTINATION ${CONFIG_PATH})
file(COPY ${CMAKE_SOURCE_DIR}/resources/data/data.json DESTINATION ${CONFIG_PATH})
file(COPY ${CMAKE_SOURCE_DIR}/resources/images/elevator.svg DESTINATION "${CONFIG_PATH}/images")