aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/CMakeLists.txt
blob: 46deb67ab8eaf64395933f49a3a094e6844da1d7 (plain)
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
target_sources(crepe PUBLIC
	AudioSource.cpp
	BehaviorScript.cpp
	GameObject.cpp
	Rigidbody.cpp
	ParticleEmitter.cpp
	Transform.cpp
	Color.cpp
	Sprite.cpp
	Config.cpp
	Metadata.cpp
	Camera.cpp
	Animator.cpp
	BoxCollider.cpp
	CircleCollider.cpp
	IKeyListener.cpp
	IMouseListener.cpp
	LoopManager.cpp
	LoopTimer.cpp
	Asset.cpp
	EventHandler.cpp
	Script.cpp
	Button.cpp
	UIObject.cpp
	AI.cpp
)

target_sources(crepe PUBLIC FILE_SET HEADERS FILES
	AudioSource.h
	BehaviorScript.h
	Config.h
	Script.h
	Script.hpp
	GameObject.h
	GameObject.hpp
	Rigidbody.h
	Sprite.h
	Vector2.h
	Vector2.hpp
	Color.h
	Scene.h
	Metadata.h
	Camera.h
	Animator.h
	BoxCollider.h
	CircleCollider.h
	EventHandler.h
	EventHandler.hpp
	Event.h
	IKeyListener.h
	IMouseListener.h
	LoopManager.h
	LoopTimer.h
	Asset.h
	Button.h
	UIObject.h
	AI.h
)