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
|
version(1);
project_name = "learn-opengl-simple";
patterns = {
"*.cpp",
"*.c",
"*.h",
"*.bat",
"*.sh",
"*.4coder",
};
blacklist_patterns = {
".*",
};
load_paths = {
{{
{".", .relative = true, .recursive = true, }
}, .os = "win" },
};
command_list = {
{ .name = "build-debug",
.out = "*compilation*",
.footer_panel = true,
.save_dirty_files = true,
.cursor_at_end = false,
.cmd = {{"build.bat ", .os = "win"}},
},
};
fkey_command[1] = "build-debug";
|