mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
* Always use latest raylib version * Always use latest raylib version * Always use latest raylib version
14 lines
354 B
CMake
14 lines
354 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
project(drturtle)
|
|
|
|
# Executable & linking
|
|
add_executable(${PROJECT_NAME} 06_drturtle_final.c)
|
|
if (NOT TARGET raylib)
|
|
find_package(raylib REQUIRED)
|
|
endif()
|
|
target_link_libraries(${PROJECT_NAME} raylib)
|
|
|
|
# Resources
|
|
# Copy all of the resource files to the destination
|
|
file(COPY "resources/" DESTINATION "resources/")
|