summaryrefslogtreecommitdiffhomepage
path: root/games/light_my_ritual/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'games/light_my_ritual/CMakeLists.txt')
-rw-r--r--games/light_my_ritual/CMakeLists.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/games/light_my_ritual/CMakeLists.txt b/games/light_my_ritual/CMakeLists.txt
new file mode 100644
index 00000000..1e2cafe1
--- /dev/null
+++ b/games/light_my_ritual/CMakeLists.txt
@@ -0,0 +1,21 @@
+# Setup the project and settings
+project(light_my_ritual)
+
+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(light_my_ritual light_my_ritual.c ${screen_sources})
+link_libraries_to_executable(light_my_ritual)
+
+# Resources
+# Copy all of the resource files to the destination
+file(COPY "resources/" DESTINATION "resources/")
+