-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathobjdiff.json
62 lines (62 loc) · 1.81 KB
/
objdiff.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
{
"custom_make": "python",
"custom_args": [
"./scripts/build.py",
"--build-type=objdiffbuild",
"--object-name"
],
"target_dir": "build/objdiff/orig",
"base_dir": "build/objdiff/reimpl",
"build_base": true,
"build_target": false,
"watch_patterns": [
"*.c",
"*.cpp",
"*.h",
"*.hpp"
],
"units": [
{
"name": "Global",
"target_path": "build/objdiff/orig/Global.obj",
"base_path": "build/objdiff/reimpl/Global.obj",
"reverse_fn_order": false
},
{
"name": "Lzss",
"target_path": "build/objdiff/orig/Lzss.obj",
"base_path": "build/objdiff/reimpl/Lzss.obj",
"reverse_fn_order": false
},
{
"name": "main",
"target_path": "build/objdiff/orig/main.obj",
"base_path": "build/objdiff/reimpl/main.obj",
"reverse_fn_order": false
},
{
"name": "Midi",
"target_path": "build/objdiff/orig/Midi.obj",
"base_path": "build/objdiff/reimpl/Midi.obj",
"reverse_fn_order": false
},
{
"name": "PbgArchive",
"target_path": "build/objdiff/orig/PbgArchive.obj",
"base_path": "build/objdiff/reimpl/PbgArchive.obj",
"reverse_fn_order": false
},
{
"name": "PbgFile",
"target_path": "build/objdiff/orig/PbgFile.obj",
"base_path": "build/objdiff/reimpl/PbgFile.obj",
"reverse_fn_order": false
},
{
"name": "utils",
"target_path": "build/objdiff/orig/utils.obj",
"base_path": "build/objdiff/reimpl/utils.obj",
"reverse_fn_order": false
}
]
}