-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.4coder
More file actions
37 lines (36 loc) · 906 Bytes
/
project.4coder
File metadata and controls
37 lines (36 loc) · 906 Bytes
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
version(1);
project_name = "xfloat";
patterns = {
"*.c",
"*.cpp",
"*.h",
"*.m",
"*.bat",
"*.sh",
"*.4coder",
};
blacklist_patterns = {
".*",
};
load_paths_base = {
{ ".", .relative = true, .recursive = true },
};
load_paths = {
{ load_paths_base, .os = "win", },
{ load_paths_base, .os = "linux", },
{ load_paths_base, .os = "mac", },
};
command_list = {
{ .name = "build",
.out = "*compilation*", .footer_panel = true, .save_dirty_files = true,
.cmd = { { "build.bat" , .os = "win" },
{ "./build.sh", .os = "linux" },
{ "./build.sh", .os = "mac" }, }, },
{ .name = "run",
.out = "*run*", .footer_panel = false, .save_dirty_files = false,
.cmd = { { "gebouw\\xfloat-test", .os = "win" },
{ "gebouw/xfloat-test" , .os = "linux" },
{ "gebouw/xfloat-test" , .os = "mac" }, }, },
};
fkey_command[1] = "build";
fkey_command[2] = "run";