25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

16 satır
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()