Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

16 строки
316 B

  1. cmake_minimum_required(VERSION 3.0)
  2. # Config options
  3. set(BUILD_EXAMPLES ON CACHE BOOL "Build the examples.")
  4. set(BUILD_GAMES ON CACHE BOOL "Build the example games.")
  5. add_subdirectory(src release)
  6. if (${BUILD_EXAMPLES})
  7. add_subdirectory(examples)
  8. endif()
  9. if (${BUILD_GAMES})
  10. add_subdirectory(games)
  11. endif()