🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
448 B

  1. cmake_minimum_required(VERSION 3.6)
  2. project(GAME)
  3. # armeabi-v7a requires cpufeatures library
  4. # include(AndroidNdkModules)
  5. # android_ndk_import_module_cpufeatures()
  6. # SDL sources are in a subfolder named "SDL"
  7. add_subdirectory(SDL)
  8. # Compilation of companion libraries
  9. #add_subdirectory(SDL_image)
  10. #add_subdirectory(SDL_mixer)
  11. #add_subdirectory(SDL_ttf)
  12. # Your game and its CMakeLists.txt are in a subfolder named "src"
  13. add_subdirectory(src)