summaryrefslogtreecommitdiffhomepage
path: root/games/koala_seasons/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'games/koala_seasons/CMakeLists.txt')
-rw-r--r--games/koala_seasons/CMakeLists.txt17
1 files changed, 6 insertions, 11 deletions
diff --git a/games/koala_seasons/CMakeLists.txt b/games/koala_seasons/CMakeLists.txt
index f79ab911..7e500d1e 100644
--- a/games/koala_seasons/CMakeLists.txt
+++ b/games/koala_seasons/CMakeLists.txt
@@ -1,21 +1,16 @@
-# Setup the project and settings
+cmake_minimum_required(VERSION 2.6)
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)
+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/")
-