aboutsummaryrefslogtreecommitdiff
path: root/src/example/CMakeLists.txt
blob: 307c8da1ca310ecc4291c7c2c58c65c3e99cc14c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
set(GAME_HEADERS
	Aquarium.h
	Background.h
	Forest.h
	Hallway.h
	Start.h
	GameScene.h
)

set(GAME_SOURCES
	game.cpp
	Aquarium.cpp
	Background.cpp
	Forest.cpp
	Hallway.cpp
	Start.cpp
	GameScene.cpp
)

add_executable(game ${GAME_SOURCES} ${GAME_HEADERS})

target_link_libraries(game PUBLIC crepe)