aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/CMakeLists.txt
blob: cc20f83548fa6aac87d28c5d77587532378863e1 (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
target_sources(crepe PUBLIC
	Asset.cpp
	Sound.cpp
	SoundContext.cpp
	SdlContext.cpp
	ComponentManager.cpp
	Component.cpp
	ScriptSystem.cpp
	RenderSystem.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
	RenderSystem.h
)

add_subdirectory(api)
add_subdirectory(util)