Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

13 linhas
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/")