Feat: - Using Tauri framework by default - Add new configuration to initiate mobile app and its command for dev - Add dependencies needed for mobile build Test: - Confirm to be built successfully
13 lines
283 B
TOML
13 lines
283 B
TOML
[target.aarch64-apple-ios-sim]
|
|
linker = "clang"
|
|
rustflags = [
|
|
"-C", "link-arg=-target",
|
|
"-C", "link-arg=aarch64-apple-ios13.0-simulator",
|
|
]
|
|
|
|
[target.x86_64-apple-ios]
|
|
linker = "clang"
|
|
rustflags = [
|
|
"-C", "link-arg=-target",
|
|
"-C", "link-arg=x86_64-apple-ios13.0-simulator",
|
|
] |