aboutsummaryrefslogtreecommitdiff
path: root/games/drturtle/CMakeLists.txt
blob: f5778d9cbe043b7d39ef85df2b2cfa4741cbaf40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 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/")