blob: f79ab91122327daed5b52d9f5d9bd5a7d3a7d2dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Setup the project and settings
project(koala_seasons)
include("../../cmake/utils.cmake")
# Make sure raylib has been built
# TODO `build` directory should maybe be something else...
include_directories("../../build/release")
# Grab the screens
file(GLOB screen_sources "screens/*.c")
# Executable & linking
add_executable(koala_seasons koala_seasons.c ${screen_sources})
link_libraries_to_executable(koala_seasons)
# Resources
# Copy all of the resource files to the destination
file(COPY "resources/" DESTINATION "resources/")
|