This repository has been archived by the owner on Dec 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathproject.yml
49 lines (49 loc) · 1.6 KB
/
project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: rust-game
options:
bundleIdPrefix: com.rust
configs:
Debug: debug
Release: release
targets:
cargo:
type: ""
platform: iOS
legacy:
toolPath: /bin/sh
arguments: "build_rust_deps.sh"
workingDirectory: "./"
game:
sources: src
type: application
platform: iOS
deploymentTarget: "12.2"
scheme:
environmentVariables:
- variable: RUST_BACKTRACE
value: 1
isEnabled: true
settings:
base:
OTHER_LDFLAGS: ["$(inherited)", "-lgame_bindings"]
ENABLE_BITCODE: NO
CLANG_CXX_LANGUAGE_STANDARD: c++14
CLANG_CXX_LIBRARY: libc++
configs:
debug:
HEADER_SEARCH_PATHS: ["$(inherited)", "../rust/game_bindings"]
LIBRARY_SEARCH_PATHS: ["$(inherited)", "../target/aarch64-apple-ios/debug"]
release:
HEADER_SEARCH_PATHS: ["$(inherited)", "../rust/game_bindings"]
LIBRARY_SEARCH_PATHS: ["$(inherited)", "../target/aarch64-apple-ios/release"]
dependencies:
- sdk: libresolv.tbd
- sdk: libc++.tbd
- target: cargo
embed: false
info:
path: src/Info.plist
properties:
UIRequiresFullScreen: true
UIStatusBarHidden: true
UISupportedInterfaceOrientations: [UIInterfaceOrientationLandscapeRight]
UILaunchStoryboardName: LaunchScreen