-
Notifications
You must be signed in to change notification settings - Fork 8
/
sample.cps
67 lines (67 loc) · 1.55 KB
/
sample.cps
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "sample",
"description": "Sample CPS",
"license": "BSD",
"version": "1.2.0",
"compat_version": "0.8.0",
"platform": {
"isa": "x86_64",
"kernel": "linux",
"c_runtime_vendor": "gnu",
"c_runtime_version": "2.20",
"jvm_version": "1.6"
},
"configurations": [ "optimized", "debug" ],
"default_components": [ "sample" ],
"components": {
"sample-core": {
"type": "interface",
"definitions": [ "SAMPLE" ],
"includes": [ "@prefix@/include" ]
},
"sample": {
"type": "interface",
"configurations": {
"shared": {
"requires": [ ":sample-shared" ]
},
"static": {
"requires": [ ":sample-static" ]
}
}
},
"sample-shared": {
"type": "dylib",
"requires": [ ":sample-core" ],
"configurations": {
"optimized": {
"location": "@prefix@/lib64/libsample.so.1.2.0"
},
"debug": {
"location": "@prefix@/lib64/libsample_d.so.1.2.0"
}
}
},
"sample-static": {
"type": "archive",
"definitions": [ "SAMPLE_STATIC" ],
"requires": [ ":sample-core" ],
"configurations": {
"optimized": {
"location": "@prefix@/lib64/libsample.a"
},
"debug": {
"location": "@prefix@/lib64/libsample_d.a"
}
}
},
"sample-tool": {
"type": "executable",
"location": "@prefix@/bin/sample-tool"
},
"sample-java": {
"type": "jar",
"location": "@prefix@/share/java/sample.jar"
}
}
}