summaryrefslogtreecommitdiff
path: root/src/contrib/SDL-3.2.20/build-scripts/pkg-support/mingw/INSTALL.md.in
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2025-08-30 16:53:58 -0700
committer3gg <3gg@shellblade.net>2025-08-30 16:53:58 -0700
commit6aaedb813fa11ba0679c3051bc2eb28646b9506c (patch)
tree34acbfc9840e02cb4753e6306ea7ce978bf8b58e /src/contrib/SDL-3.2.20/build-scripts/pkg-support/mingw/INSTALL.md.in
parent8f228ade99dd3d4c8da9b78ade1815c9adf85c8f (diff)
Update to SDL3
Diffstat (limited to 'src/contrib/SDL-3.2.20/build-scripts/pkg-support/mingw/INSTALL.md.in')
-rw-r--r--src/contrib/SDL-3.2.20/build-scripts/pkg-support/mingw/INSTALL.md.in53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/contrib/SDL-3.2.20/build-scripts/pkg-support/mingw/INSTALL.md.in b/src/contrib/SDL-3.2.20/build-scripts/pkg-support/mingw/INSTALL.md.in
new file mode 100644
index 0000000..f1a6a78
--- /dev/null
+++ b/src/contrib/SDL-3.2.20/build-scripts/pkg-support/mingw/INSTALL.md.in
@@ -0,0 +1,53 @@
1
2# Using this package
3
4This package contains @<@PROJECT_NAME@>@ built for the mingw-w64 toolchain.
5
6The files for 32-bit architecture are in i686-w64-mingw32
7The files for 64-bit architecture are in x86_64-w64-mingw32
8
9You can install them to another location, just type `make` for help.
10
11To use this package, point your include path at _arch_/include and your library path at _arch_/lib, link with the @<@PROJECT_NAME@>@ library and copy _arch_/bin/@<@PROJECT_NAME@>@.dll next to your executable.
12
13e.g.
14```sh
15gcc -o hello.exe hello.c -Ix86_64-w64-mingw32/include -Lx86_64-w64-mingw32/lib -l@<@PROJECT_NAME@>@
16cp x86_64-w64-mingw32/bin/@<@PROJECT_NAME@>@.dll .
17./hello.exe
18```
19
20# Documentation
21
22An API reference, tutorials, and additional documentation is available at:
23
24https://wiki.libsdl.org/@<@PROJECT_NAME@>@
25
26# Example code
27
28There are simple example programs available at:
29
30https://examples.libsdl.org/SDL3
31
32# Discussions
33
34## Discord
35
36You can join the official Discord server at:
37
38https://discord.com/invite/BwpFGBWsv8
39
40## Forums/mailing lists
41
42You can join SDL development discussions at:
43
44https://discourse.libsdl.org/
45
46Once you sign up, you can use the forum through the website or as a mailing list from your email client.
47
48## Announcement list
49
50You can sign up for the low traffic announcement list at:
51
52https://www.libsdl.org/mailing-list.php
53