CMake based build system.

Some people might find this handly
This commit is contained in:
ASDF
2017-07-22 19:45:36 -04:00
committed by Benjamin N. summerton
parent 0fc1323c80
commit e173db19f7
14 changed files with 416 additions and 2 deletions

View File

@ -0,0 +1,21 @@
# Setup the project and settings
project(koala_seasons)
include("../../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/")