2
0

CMakeLists.txt 478 B

123456789101112131415161718192021222324
  1. cmake_minimum_required(VERSION 3.5)
  2. project("Beef")
  3. if(NOT CMAKE_BUILD_TYPE)
  4. set(CMAKE_BUILD_TYPE "Debug")
  5. message(STATUS "Build type not specified: Use Debug by default.")
  6. endif(NOT CMAKE_BUILD_TYPE)
  7. if (DEFINED BF_ONLY_RUNTIME)
  8. add_subdirectory(BeefRT)
  9. add_subdirectory(BeefySysLib)
  10. else()
  11. add_subdirectory(BeefRT)
  12. add_subdirectory(BeefySysLib)
  13. add_subdirectory(extern/hunspell)
  14. add_subdirectory(IDEHelper)
  15. add_subdirectory(BeefBoot)
  16. endif()