summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorMatthias Melcher <git@matthiasm.com>2019-01-16 02:12:29 +0100
committerMatthias Melcher <git@matthiasm.com>2019-01-16 02:12:29 +0100
commit563baced13e4961500dccd35b19e9b063c93dc9c (patch)
tree1ffaea2a4963c0a7f652a9b87be7d84f3453a7c5 /CMakeLists.txt
parent6de1c93e545e8100a4e907938dccd9b0564e12a2 (diff)
Android CMake: fix, more autogenerated files
Fixed a bug that would cause an error is Android Build was NOT defined. Creating list of test targets automatically.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index dd67da35e..e5a1e7fa1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -104,6 +104,13 @@ if(OPTION_BUILD_EXAMPLES)
endif(OPTION_BUILD_EXAMPLES)
#######################################################################
+# Android Studio wrapup
+#######################################################################
+if (OPTION_CREATE_ANDROID_STUDIO_IDE)
+ CREATE_ANDROID_IDE_WRAPUP()
+endif (OPTION_CREATE_ANDROID_STUDIO_IDE)
+
+#######################################################################
# installation
#######################################################################
include(CMake/install.cmake)