-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.4coder
42 lines (38 loc) · 908 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
version(1);
project_name = "aoc23";
patterns = {
"*.c",
"*.cpp",
"*.h",
"*.hpp",
"*.sh",
"*.4coder",
"*.txt",
};
blacklist_patterns = {
".*",
};
load_paths_custom = {
{".", "lib"},
};
load_paths = {
{ load_paths_custom, .os = "win" },
{ load_paths_custom, .os = "linux"},
{ load_paths_custom, .os = "mac" },
};
build_debug = "./build.sh";
run = "./build.sh && ./aoc";
command_list = {
{ .name = "build",
.out = "*compile*", .footer_panel = true, .save_dirty_files = true, .cursor_at_end = false,
.cmd = { {build_debug, .os ="win" },
{build_debug, .os ="linux"},
{build_debug, .os ="mac" }, }, },
{ .name = "run",
.out = "*run*", .footer_panel = true, .save_dirty_files = true, .cursor_at_end = false,
.cmd = { {run, .os ="win" },
{run, .os ="linux"},
{run, .os ="mac" }, }, },
};
fkey_command[1] = "build";
fkey_command[2] = "run";