-
Notifications
You must be signed in to change notification settings - Fork 0
/
.buckconfig
40 lines (31 loc) · 1.09 KB
/
.buckconfig
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
# ------------------------------------------------------
# All the cells (read "repository") in the Buck project
# ------------------------------------------------------
[repositories]
buck = .
app = ./app
common = ./common
# ------------------------------------------------------
# Configurations for Apple toolchain
# ------------------------------------------------------
[apple]
xcode_developer_dir = /Applications/Xcode.app/Contents/Developer
iphonesimulator_target_sdk_version = 13.0
iphoneos_target_sdk_version = 13.0
# ------------------------------------------------------
# Configurations for C/C++ toolchain
# ------------------------------------------------------
[cxx]
default_platform = iphonesimulator-x86_64
cflags = -g -std=c11
cxxflags = -g -std=c++14
# ------------------------------------------------------
# Swift settings
# ------------------------------------------------------
[swift]
version = 5
# ------------------------------------------------------
# Project generation settings
# ------------------------------------------------------
[project]
ide = xcode