summaryrefslogtreecommitdiffhomepage
path: root/games/just_do/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'games/just_do/CMakeLists.txt')
-rw-r--r--games/just_do/CMakeLists.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/games/just_do/CMakeLists.txt b/games/just_do/CMakeLists.txt
deleted file mode 100644
index f25b6e37..00000000
--- a/games/just_do/CMakeLists.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-cmake_minimum_required(VERSION 2.6)
-project(just_do)
-
-# Grab the screens
-file(GLOB screen_sources "screens/*.c")
-
-# Executable & linking
-add_executable(${PROJECT_NAME} ${PROJECT_NAME}.c ${screen_sources})
-if (NOT TARGET raylib)
- find_package(raylib 2.0 REQUIRED)
-endif()
-target_link_libraries(${PROJECT_NAME} raylib)
-
-# Resources
-# Copy all of the resource files to the destination
-file(COPY "resources/" DESTINATION "resources/")