Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

21 řádky
532 B

  1. # Setup the project and settings
  2. project(koala_seasons)
  3. include("../../utils.cmake")
  4. # Make sure raylib has been built
  5. # TODO `build` directory should maybe be something else...
  6. include_directories("../../build/release")
  7. # Grab the screens
  8. file(GLOB screen_sources "screens/*.c")
  9. # Executable & linking
  10. add_executable(koala_seasons koala_seasons.c ${screen_sources})
  11. link_libraries_to_executable(koala_seasons)
  12. # Resources
  13. # Copy all of the resource files to the destination
  14. file(COPY "resources/" DESTINATION "resources/")