aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/CMakeLists.txt
blob: d72d4a0e41d55c8455c3f75cb744e197d7b51b2f (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
target_sources(crepe PUBLIC
	Particle.cpp
	ComponentManager.cpp
	Component.cpp
	Collider.cpp
	Exception.cpp
	Resource.cpp
)

target_sources(crepe PUBLIC FILE_SET HEADERS FILES
	ComponentManager.h
	ComponentManager.hpp
	Component.h
	Collider.h
	ValueBroker.h
	ValueBroker.hpp
	Exception.h
	Exception.hpp
	Resource.h
)

add_subdirectory(api)
add_subdirectory(facade)
add_subdirectory(system)
add_subdirectory(util)