From e173db19f7f8e7e79c3f0cd6b88c207561bfa28b Mon Sep 17 00:00:00 2001 From: ASDF Date: Sat, 22 Jul 2017 19:45:36 -0400 Subject: CMake based build system. Some people might find this handly --- games/drturtle/CMakeLists.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 games/drturtle/CMakeLists.txt (limited to 'games/drturtle') diff --git a/games/drturtle/CMakeLists.txt b/games/drturtle/CMakeLists.txt new file mode 100644 index 00000000..59813fb3 --- /dev/null +++ b/games/drturtle/CMakeLists.txt @@ -0,0 +1,18 @@ +# Setup the project and settings +project(drturtle) + +include("../../utils.cmake") + + +# Make sure raylib has been built +# TODO `build` directory should maybe be something else... +include_directories("../../build/release") + +# Executable & linking +add_executable(drturtle 06_drturtle_final.c) +link_libraries_to_executable(drturtle) + +# Resources +# Copy all of the resource files to the destination +file(COPY "resources/" DESTINATION "resources/") + -- cgit v1.2.3