aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/CMakeLists.txt
blob: 52369d0fae3c721706a65a43f85cabf74e2ba722 (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
target_sources(crepe PUBLIC
	System.cpp
	ParticleSystem.cpp
	ScriptSystem.cpp
	PhysicsSystem.cpp
	CollisionSystem.cpp
	RenderSystem.cpp
	AudioSystem.cpp
	AnimatorSystem.cpp
	InputSystem.cpp
	EventSystem.cpp
	ReplaySystem.cpp
	AISystem.cpp
)

target_sources(crepe PUBLIC FILE_SET HEADERS FILES
	System.h
	ScriptSystem.h
	PhysicsSystem.h
	CollisionSystem.h
	RenderSystem.h
	AudioSystem.h
	AnimatorSystem.h
	InputSystem.h
	EventSystem.h
	ReplaySystem.h
	AISystem.h
)