Files
metadesk/project.4coder
T
2021-08-20 23:45:00 -07:00

70 lines
1.0 KiB
Plaintext

version(1);
project_name = "metadesk";
patterns =
{
"*.c",
"*.cpp",
"*.mdesk",
"*.h",
"*.bat",
"*.sh",
"*.4coder",
"*.txt",
};
blacklist_patterns =
{
".*",
};
load_paths =
{
{
{ {"."}, .recursive = true, .relative = true }, .os = "win"
},
};
command_list =
{
{
.name = "build",
.out = "*compilation*",
.footer_panel = true,
.save_dirty_files = true,
.cursor_at_end = false,
.cmd =
{
{ "build.bat", .os = "win" },
},
},
{
.name = "build_with_clang",
.out = "*compilation*",
.footer_panel = true,
.save_dirty_files = true,
.cursor_at_end = false,
.cmd =
{
{ "build_with_clang.bat", .os = "win" },
},
},
{
.name = "bld_core test",
.out = "*compilation*",
.footer_panel = true,
.save_dirty_files = true,
.cursor_at_end = false,
.cmd =
{
{ "git_bash bin\\bld_core.sh", .os = "win" },
},
},
};
fkey_command[1] = "build";
fkey_command[2] = "build_with_clang";
fkey_command[5] = "bld_core test";