diff options
Diffstat (limited to 'games/drturtle/CMakeLists.txt')
| -rw-r--r-- | games/drturtle/CMakeLists.txt | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/games/drturtle/CMakeLists.txt b/games/drturtle/CMakeLists.txt index bdd91970..f5778d9c 100644 --- a/games/drturtle/CMakeLists.txt +++ b/games/drturtle/CMakeLists.txt @@ -1,18 +1,13 @@ -# Setup the project and settings +cmake_minimum_required(VERSION 2.6) project(drturtle) -include("../../cmake/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) +add_executable(${PROJECT_NAME} 06_drturtle_final.c) +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/") - |
