-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
37 lines (31 loc) · 768 Bytes
/
Copy pathCMakeLists.txt
File metadata and controls
37 lines (31 loc) · 768 Bytes
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
# CMakeLists.txt
# XML Game Engine
# author: beefviper
# date: Sept 18, 2020
cmake_minimum_required(VERSION 3.19)
project("XMLGameEngine")
add_executable(${PROJECT_NAME})
include(scripts/cmake/options.cmake)
include(scripts/cmake/dependencies.cmake)
include(scripts/cmake/targets.cmake)
include(scripts/cmake/platform.cmake)
include(scripts/cmake/assets.cmake)
target_sources(${PROJECT_NAME} PRIVATE
"source/main.cpp"
"source/game.cpp"
"source/engine.cpp"
"source/object.cpp"
"source/states.cpp"
"source/utils.cpp"
"source/game_xml.cpp"
"source/game_expr.cpp"
"source/game_sfml.cpp"
"include/game.h"
"include/engine.h"
"include/object.h"
"include/states.h"
"include/utils.h"
"include/game_xml.h"
"include/game_expr.h"
"include/game_sfml.h"
)