diff options
Diffstat (limited to 'contrib/SDL-3.2.8/android-project/app/jni/CMakeLists.txt')
| -rw-r--r-- | contrib/SDL-3.2.8/android-project/app/jni/CMakeLists.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/SDL-3.2.8/android-project/app/jni/CMakeLists.txt b/contrib/SDL-3.2.8/android-project/app/jni/CMakeLists.txt new file mode 100644 index 0000000..404b87b --- /dev/null +++ b/contrib/SDL-3.2.8/android-project/app/jni/CMakeLists.txt | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | cmake_minimum_required(VERSION 3.6) | ||
| 2 | |||
| 3 | project(GAME) | ||
| 4 | |||
| 5 | # SDL sources are in a subfolder named "SDL" | ||
| 6 | add_subdirectory(SDL) | ||
| 7 | |||
| 8 | # Compilation of companion libraries | ||
| 9 | #add_subdirectory(SDL_image) | ||
| 10 | #add_subdirectory(SDL_mixer) | ||
| 11 | #add_subdirectory(SDL_ttf) | ||
| 12 | |||
| 13 | # Your game and its CMakeLists.txt are in a subfolder named "src" | ||
| 14 | add_subdirectory(src) | ||
| 15 | |||
