This repository has been archived by the owner on Mar 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.projections.json
74 lines (66 loc) · 1.86 KB
/
.projections.json
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
68
69
70
71
72
73
74
{
"include/util/*.h": {
"type": "laser-util-header",
"alternate": "src/util/{}.cpp"
},
"include/core/*.h": {
"type": "laser-core-header",
"alternate": "src/core/{}.cpp"
},
"include/formula/*.h": {
"type": "laser-formula-header",
"alternate": "src/formula/{}.cpp"
},
"include/formula/extended/*.h": {
"type": "laser-formula-extended-header",
"alternate": "src/formula/extended/{}.cpp"
},
"include/example/*.h": {
"type": "laser-example-header",
"alternate": "src/example/{}.cpp"
},
"include/rule/*.h": {
"type": "laser-rule-header",
"alternate": "src/rule/{}.cpp"
},
"src/util/*.cpp": {
"type": "laser-util-source",
"alternate": "include/util/{}.h"
},
"src/core/*.cpp": {
"type": "laser-core-source",
"alternate": "include/core/{}.h"
},
"src/formula/*.cpp": {
"type": "laser-formula-source",
"alternate": "include/formula/{}.h"
},
"src/formula/extended/*.cpp": {
"type": "laser-formula-extended-source",
"alternate": "include/formula/extended/{}.h"
},
"src/example/*.cpp": {
"type": "laser-example-source",
"alternate": "include/example/{}.h"
},
"src/rule/*.cpp": {
"type": "laser-rule-source",
"alternate": "include/rule/{}.h"
},
"app_bench/include/*.h": {
"type": "benchapp-header",
"alternate": "app_bench/src/{}.cpp"
},
"app_bench/src/*.cpp": {
"type": "benchapp-source",
"alternate": "app_bench/include/{}.h"
},
"app_simple/include/*.h": {
"type": "simpleapp-header",
"alternate": "app_simple/src/{}.cpp"
},
"app_simple/src/*.cpp": {
"type": "simpleapp-source",
"alternate": "app_simple/include/{}.h"
},
}