summaryrefslogtreecommitdiff
path: root/contrib/SDL-3.2.8/android-project/app/jni/CMakeLists.txt
diff options
context:
space:
mode:
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.txt15
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 @@
1cmake_minimum_required(VERSION 3.6)
2
3project(GAME)
4
5# SDL sources are in a subfolder named "SDL"
6add_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"
14add_subdirectory(src)
15