-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.4coder
More file actions
88 lines (82 loc) · 1.95 KB
/
project.4coder
File metadata and controls
88 lines (82 loc) · 1.95 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
version(2);
project_name = "editor";
patterns =
{
"*.c",
"*.cu",
"*.cpp",
"*.h",
"*.m",
"*.bat",
"*.sh",
"*.mdesk",
"*.4coder",
"*.glsl",
};
blacklist_patterns =
{
".*",
"gl_core_3_3_debug.h"
};
paths =
{
{ .path = ".", .recursive = false, .relative = true, },
{ .path = "code", .recursive = false, .relative = true, },
{ .path = "code/base", .recursive = true, .relative = true, },
{ .path = "code/lib", .recursive = true, .relative = true, },
{ .path = "code/shaders", .recursive = true, .relative = true, },
{ .path = "code/cling/", .recursive = false, .relative = true, },
{ .path = "code/editor/", .recursive = true, .relative = true, },
//{ .path = "code/computerenhance/", .recursive = true, .relative = true, },
};
load_paths =
{
.win = paths,
.linux = paths,
.mac = paths,
};
commands =
{
.build_editor =
{
.out = "*compilation*",
.linux = "sh ./code/build.sh norebuild",
.win = ".\\code\\build.bat",
.save_dirty_files = true,
.footer_panel = false,
.cursor_at_end = false,
},
.build_lexer =
{
.out = "*compilation*",
.linux = "sh ./code/test.sh",
.win = ".\\code\\build.bat",
.save_dirty_files = true,
.footer_panel = false,
.cursor_at_end = false,
},
.run_editor =
{
.out = "*compilation*",
.linux = "./build/editor",
.win = "raddbg --ipc run",
.save_dirty_files = false,
.footer_panel = false,
.cursor_at_end = false,
},
.raddbg_kill =
{
.out = "*compilation*",
.linux = "sh ./code/test.sh",
.win = "raddbg --ipc kill_all",
.save_dirty_files = true,
.footer_panel = false,
.cursor_at_end = false,
},
};
fkey_command =
{
.F1 = "build_editor",
.F2 = "run_editor",
.F5 = "raddbg_kill",
};