You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
358 B

  1. cmake_minimum_required(VERSION 2.6)
  2. project(drturtle)
  3. # Executable & linking
  4. add_executable(${PROJECT_NAME} 06_drturtle_final.c)
  5. if (NOT TARGET raylib)
  6. find_package(raylib 2.0 REQUIRED)
  7. endif()
  8. target_link_libraries(${PROJECT_NAME} raylib)
  9. # Resources
  10. # Copy all of the resource files to the destination
  11. file(COPY "resources/" DESTINATION "resources/")