summaryrefslogtreecommitdiff
path: root/contrib/SDL-3.2.8/docs/INTRO-xcode.md
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2026-03-06 13:30:59 -0800
committer3gg <3gg@shellblade.net>2026-03-06 13:30:59 -0800
commit30f41c02aec763d32e62351452da9ef582bc3472 (patch)
tree6bec3f65bfdcbf7f1a631da21a6d613bef5db2fa /contrib/SDL-3.2.8/docs/INTRO-xcode.md
parent452ff21ca02e315c64ceeb3f21c1ea357aeb1bc8 (diff)
Move contrib libraries to contrib repo
Diffstat (limited to 'contrib/SDL-3.2.8/docs/INTRO-xcode.md')
-rw-r--r--contrib/SDL-3.2.8/docs/INTRO-xcode.md16
1 files changed, 0 insertions, 16 deletions
diff --git a/contrib/SDL-3.2.8/docs/INTRO-xcode.md b/contrib/SDL-3.2.8/docs/INTRO-xcode.md
deleted file mode 100644
index 5f0a62a..0000000
--- a/contrib/SDL-3.2.8/docs/INTRO-xcode.md
+++ /dev/null
@@ -1,16 +0,0 @@
1
2# Introduction to SDL with Xcode
3
4The easiest way to use SDL is to include it as a subproject in your project.
5
6We'll start by creating a simple project to build and run [hello.c](hello.c)
7
8- Create a new project in Xcode, using the App template and selecting Objective C as the language
9- Remove the .h and .m files that were automatically added to the project
10- Remove the main storyboard that was automatically added to the project
11- On iOS projects, select the project, select the main target, select the Info tab, look for "Custom iOS Target Properties", and remove "Main storyboard base file name" and "Application Scene Manifest"
12- Right click the project and select "Add Files to [project]", navigate to the SDL docs directory and add the file hello.c
13- Right click the project and select "Add Files to [project]", navigate to the SDL Xcode/SDL directory and add SDL.xcodeproj
14- Select the project, select the main target, select the General tab, look for "Frameworks, Libaries, and Embedded Content", and add SDL3.framework
15- Build and run!
16