-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.4coder
43 lines (42 loc) · 921 Bytes
/
project.4coder
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
version(2);
project_name = "Michaelsoft Binbows";
patterns = {
"*.c",
"*.cpp",
"*.h",
"*.m",
"*.asm",
"*.bat",
"*.sh",
"*.4coder",
};
blacklist_patterns = {
".*",
};
load_paths_base = {
{ ".", .relative = true, .recursive = true, },
};
load_paths = {
.win = load_paths_base,
.linux = load_paths_base,
.mac = load_paths_base,
};
commands = {
.build = { .out = "*compilation*", .footer_panel = true, .save_dirty_files = true,
.win = "build.bat",
.linux = "./build.sh",
.mac = "./build.sh", },
.run = { .out = "*run*", .footer_panel = false, .save_dirty_files = false,
.win = "qemu-system-x86_64 -fda build/main_floppy.img",
.linux = "build/build",
.mac = "build/build", },
.debug = { .out = "*run*", .footer_panel = false, .save_dirty_files = false,
.win = "debug.bat",
.linux = "build/build",
.mac = "build/build", },
};
fkey_command = {
.F1 = "build",
.F2 = "run",
.F3 = "debug",
};