-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy path.appc.js
36 lines (35 loc) · 902 Bytes
/
.appc.js
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
/**
* Hyperloop configuration
*/
module.exports = {
type: 'app',
group: 'titanium',
dependencies: {},
hyperloop: {
ios: {
xcodebuild: {
/**
* any flags available to be passed into the Xcode can be
* included here to further customize the xcode build
*/
flags: {
GCC_PREPROCESSOR_DEFINITIONS: 'foo=bar'
},
/**
* this sample doesn't use SceneKit but this demonstrates
* how you can bring in frameworks explicitly. Hyperloop
* will automatically determine the required frameworks
* but in case you want to force a specific version, you can
* include it here
*/
frameworks: [
'SceneKit'
],
scripts: [{
name: 'My script phase',
shellScript: '${APPC_PROJECT_DIR}/run-script.sh'
}]
}
}
}
};