You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
530 B
38 lines
530 B
3 years ago
|
version(1);
|
||
|
|
||
|
project_name = "trace-test";
|
||
|
|
||
|
patterns = {
|
||
|
"*.c",
|
||
|
"*.h",
|
||
|
"*.4coder",
|
||
|
};
|
||
|
|
||
|
blacklist_patterns = {
|
||
|
".*",
|
||
|
"res",
|
||
|
"lib",
|
||
|
"build/*"
|
||
|
};
|
||
|
|
||
|
load_paths_base = {
|
||
|
{ ".", .relative = true, .recursive = true, }
|
||
|
};
|
||
|
|
||
|
load_paths = {
|
||
|
{ load_paths_base, .os = "linux", }
|
||
|
};
|
||
|
|
||
|
command_list = {
|
||
|
{
|
||
|
.name = "build debug",
|
||
|
.out = "*compilation*",
|
||
|
.footer_panel = false,
|
||
|
.save_dirty_files = true,
|
||
|
.cursor_at_end = true,
|
||
|
.cmd = {{ "make debug", .os = "linux" }},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
fkey_command[1] = "build debug";
|