forked from tiliguzov/DimonRun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
96 lines (80 loc) · 2.38 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
96
cmake_minimum_required(VERSION 3.20.2)
project(DimonRun)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
find_package(Qt6 COMPONENTS
Core
Gui
Widgets
REQUIRED)
add_executable(DimonRun
core/connector.cpp
core/scene.cpp
core/serializer.cpp
core/keyboard.cpp
core/animation_pack.cpp
core/serializer.cpp
core/location_manager/location_manager.cpp
core/location_manager/settings_manager.cpp
engine/component_manager.cpp
engine/coordinator.cpp
engine/entity_manager.cpp
engine/system.cpp
engine/system_manager.cpp
main.cpp
resources/hero.qrc
resources/background.qrc
resources/hand_created_dungeons.qrc
resources/view.qrc
systems/movement_system.cpp
systems/joystick_system.cpp
systems/painting_system.cpp
systems/animation_system.cpp
systems/collision_system.cpp
systems/illness_system.cpp
view/buttons/menu_button.cpp
view/widgets/fast_menu.cpp
view/widgets/vault.cpp
view/widgets/scroll.cpp)
target_link_libraries(DimonRun
Qt::Core
Qt::Gui
Qt::Widgets)
add_executable(MapCreator
core/connector.cpp
core/scene.cpp
core/serializer.cpp
core/keyboard.cpp
core/animation_pack.cpp
core/serializer.cpp
core/location_manager/location_manager.cpp
core/location_manager/settings_manager.cpp
engine/component_manager.cpp
engine/coordinator.cpp
engine/entity_manager.cpp
engine/system.cpp
engine/system_manager.cpp
resources/hero.qrc
resources/background.qrc
resources/hand_created_dungeons.qrc
resources/view.qrc
systems/movement_system.cpp
systems/joystick_system.cpp
systems/painting_system.cpp
systems/animation_system.cpp
systems/collision_system.cpp
systems/illness_system.cpp
view/buttons/menu_button.cpp
view/widgets/fast_menu.cpp
view/widgets/vault.cpp
view/widgets/scroll.cpp
map_creator/map_creator.cpp
map_creator/map_creator_main.cpp
)
target_link_libraries(MapCreator
Qt::Core
Qt::Gui
Qt::Widgets)