feature/extend-tauri-generated-xcode-project-for-tvos-target
text 45 lines 1.89 KB
Raw
1 # ============================================================
2 # gen/apple/.gitignore
3 #
4 # Strategy:
5 # - `cargo tauri ios init` regenerates project.yml (XcodeGen)
6 # - `tuist generate` regenerates *.xcodeproj, *.xcworkspace, Derived/
7 # - Everything else is hand-authored source of truth → tracked
8 # ============================================================
9
10 # ------------------------------------------------------------------
11 # Tauri-regenerated: XcodeGen manifest
12 # Re-created by `cargo tauri ios init` from tauri.conf.json.
13 # We use Project.swift (Tuist) as the Xcode project source of truth,
14 # so project.yml is a Tauri implementation detail we don't need.
15 # ------------------------------------------------------------------
16 project.yml
17
18 # ------------------------------------------------------------------
19 # Tuist-regenerated: Xcode project & workspace
20 # Fully described by Project.swift → always regenerate, never edit.
21 # ------------------------------------------------------------------
22 *.xcodeproj/
23 *.xcworkspace/
24
25 # ------------------------------------------------------------------
26 # Tuist-regenerated: derived sources & info plists
27 # Auto-synthesised from Project.swift (asset accessors, bundle IDs…).
28 # ------------------------------------------------------------------
29 Derived/
30
31 # ------------------------------------------------------------------
32 # Xcode runtime noise
33 # ------------------------------------------------------------------
34 xcuserdata/
35
36 # ------------------------------------------------------------------
37 # Rust / Cargo build output
38 # (also covered by src-tauri/.gitignore, belt-and-suspenders here)
39 # ------------------------------------------------------------------
40 build/
41
42 # ------------------------------------------------------------------
43 # Compiled Rust static libraries injected by xcode-script
44 # ------------------------------------------------------------------
45 Externals/