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