aboutsummaryrefslogtreecommitdiff
path: root/src/example/CMakeLists.txt
blob: ef2595f06bd1a2683f00d0e88bce160da8e9d331 (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
set(GAME_HEADERS
	Aquarium.h
	Background.h
	Forest.h
	Hallway.h
	Start.h
	GameScene.h
	Player.h
)

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

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

target_link_libraries(game PUBLIC crepe)