aboutsummaryrefslogtreecommitdiff
path: root/cube/android
diff options
context:
space:
mode:
Diffstat (limited to 'cube/android')
-rw-r--r--cube/android/CMakeLists.txt62
1 files changed, 62 insertions, 0 deletions
diff --git a/cube/android/CMakeLists.txt b/cube/android/CMakeLists.txt
new file mode 100644
index 00000000..9d4e69c8
--- /dev/null
+++ b/cube/android/CMakeLists.txt
@@ -0,0 +1,62 @@
+# ~~~
+# Copyright (c) 2023 Valve Corporation
+# Copyright (c) 2023 LunarG, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ~~~
+
+target_sources(vkcube PRIVATE
+ android_util.cpp
+ android_util.h
+ vulkan_wrapper.cpp
+ vulkan_wrapper.h
+)
+
+target_include_directories(vkcube PRIVATE
+ include
+ .
+)
+
+target_compile_options(vkcube PRIVATE
+ --include=${CMAKE_CURRENT_SOURCE_DIR}/vulkan_wrapper.h
+)
+
+set_directory_properties(PROPERTIES "COMPILE_OPTIONS" "") # Disable compiler warnings for android glue
+
+set(native_app_glue_dir "${CMAKE_ANDROID_NDK}/sources/android/native_app_glue")
+
+if (NOT EXISTS ${native_app_glue_dir})
+ message(FATAL_ERROR "Couldn't find Android Native Glue directory!")
+endif()
+
+# https://stackoverflow.com/questions/57189936/compiling-native-app-glue-c-results-in-an-invalid-library-file/76963564#76963564
+add_library(android_glue OBJECT)
+
+target_include_directories(android_glue PUBLIC ${native_app_glue_dir})
+target_sources(android_glue PRIVATE
+ ${native_app_glue_dir}/android_native_app_glue.c
+ ${native_app_glue_dir}/android_native_app_glue.h
+)
+
+target_link_libraries(vkcube PRIVATE
+ android_glue
+ log
+ android
+)
+
+# https://stackoverflow.com/questions/76631917/cmake-how-to-install-shared-stl-libraries-for-android/76656492#76656492
+if ("${CMAKE_ANDROID_STL_TYPE}" MATCHES "shared")
+ file(READ "${CMAKE_ANDROID_NDK}/meta/abis.json" JSON_FILE)
+ string(JSON TRIPLE GET "${JSON_FILE}" "${CMAKE_ANDROID_ARCH_ABI}" "triple")
+ install(FILES "${CMAKE_SYSROOT}/usr/lib/${TRIPLE}/libc++_shared.so" DESTINATION "${CMAKE_INSTALL_LIBDIR}")
+endif()