aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/CMakeLists.txt
blob: 750a47d0604cc75bdc320a4780625f49da7af265 (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
target_sources(crepe PUBLIC
	Asset.cpp
	Sound.cpp
	SoundContext.cpp
	Particle.cpp
	ParticleSystem.cpp
	SDLApp.cpp
	ComponentManager.cpp
	Component.cpp
	ScriptSystem.cpp
	PhysicsSystem.cpp
	CollisionSystem.cpp
	Collider.cpp
	SDLContext.cpp
	RenderSystem.cpp
	DB.cpp
)

target_sources(crepe PUBLIC FILE_SET HEADERS FILES
	Asset.h
	Sound.h
	SoundContext.h
	SDLContext.h
	ComponentManager.h
	ComponentManager.hpp
	Component.h
	System.h
	ScriptSystem.h
	PhysicsSystem.h
	CollisionSystem.h
	Collider.h
	SDLContext.h
	RenderSystem.h
	ValueBroker.h
	ValueBroker.hpp
	DB.h
)

add_subdirectory(api)
add_subdirectory(util)