From 30f41c02aec763d32e62351452da9ef582bc3472 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Fri, 6 Mar 2026 13:30:59 -0800 Subject: Move contrib libraries to contrib repo --- .../pkg-support/android/INSTALL.md.in | 91 ---------------------- 1 file changed, 91 deletions(-) delete mode 100644 contrib/SDL-3.2.8/build-scripts/pkg-support/android/INSTALL.md.in (limited to 'contrib/SDL-3.2.8/build-scripts/pkg-support/android/INSTALL.md.in') diff --git a/contrib/SDL-3.2.8/build-scripts/pkg-support/android/INSTALL.md.in b/contrib/SDL-3.2.8/build-scripts/pkg-support/android/INSTALL.md.in deleted file mode 100644 index 80321c2..0000000 --- a/contrib/SDL-3.2.8/build-scripts/pkg-support/android/INSTALL.md.in +++ /dev/null @@ -1,91 +0,0 @@ - -# Using this package - -This package contains @<@PROJECT_NAME@>@ built for the Android platform. - -## Gradle integration - -For integration with CMake/ndk-build, it uses [prefab](https://google.github.io/prefab/). - -Copy the aar archive (@<@PROJECT_NAME@>@-@<@PROJECT_VERSION@>@.aar) to a `app/libs` directory of your project. - -In `app/build.gradle` of your Android project, add: -``` -android { - /* ... */ - buildFeatures { - prefab true - } -} -dependencies { - implementation files('libs/@<@PROJECT_NAME@>@-@<@PROJECT_VERSION@>@.aar') - /* ... */ -} -``` - -If you're using CMake, add the following to your CMakeLists.txt: -``` -find_package(@<@PROJECT_NAME@>@ REQUIRED CONFIG) -target_link_libraries(yourgame PRIVATE @<@PROJECT_NAME@>@::@<@PROJECT_NAME@>@) -``` - -If you use ndk-build, add the following before `include $(BUILD_SHARED_LIBRARY)` to your `Android.mk`: -``` -LOCAL_SHARED_LIBARARIES := SDL3 SDL3-Headers -``` -And add the following at the bottom: -``` -# https://google.github.io/prefab/build-systems.html - -# Add the prefab modules to the import path. -$(call import-add-path,/out) - -# Import @<@PROJECT_NAME@>@ so we can depend on it. -$(call import-module,prefab/@<@PROJECT_NAME@>@) -``` - ---- - -## Other build systems (advanced) - -If you want to build a project without Gradle, -running the following command will extract the Android archive into a more common directory structure. -``` -python @<@PROJECT_NAME@>@-@<@PROJECT_VERSION@>@.aar -o android_prefix -``` -Add `--help` for a list of all available options. - -# Documentation - -An API reference, tutorials, and additional documentation is available at: - -https://wiki.libsdl.org/@<@PROJECT_NAME@>@ - -# Example code - -There are simple example programs available at: - -https://examples.libsdl.org/SDL3 - -# Discussions - -## Discord - -You can join the official Discord server at: - -https://discord.com/invite/BwpFGBWsv8 - -## Forums/mailing lists - -You can join SDL development discussions at: - -https://discourse.libsdl.org/ - -Once you sign up, you can use the forum through the website or as a mailing list from your email client. - -## Announcement list - -You can sign up for the low traffic announcement list at: - -https://www.libsdl.org/mailing-list.php - -- cgit v1.2.3