forked from tidev/hyperloop-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappc.js
More file actions
47 lines (47 loc) · 1.16 KB
/
appc.js
File metadata and controls
47 lines (47 loc) · 1.16 KB
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
/**
* 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 StoreKit 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: [
'StoreKit'
]
},
/**
* optionally, you can bring in third-party or first-party libraries,
* source code, resources etc. by including them here. The 'key' is the
* name of the package that will be used in the require (if code).
* the values can either be an Array or String value to the directory
* where the files are located
*/
thirdparty: {
'MyFramework': {
// these can be an array or string
source: ['src'],
header: 'src',
resource: 'src'
}
}
}
}
};