aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/CMakeLists.txt
blob: c7f18cdb6f82d1d6b8664dbdb5e5bdb8e21c6280 (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
target_sources(crepe PUBLIC
	Asset.cpp
	Sound.cpp
	SoundContext.cpp
	main.cpp
	Particle.cpp
	ParticleEmitter.cpp
	ParticleSystem.cpp
	SDLApp.cpp
)

target_sources(crepe PUBLIC FILE_SET HEADERS FILES
	Asset.h
	Sound.h
	SoundContext.h
	ParticleEmitter.hpp
	ParticleSystem.hpp
	Particle.hpp
	SDLApp.hpp
)

add_subdirectory(api)
add_subdirectory(util)