eco2d/project.4coder

54 lines
757 B
Plaintext

version(1);
project_name = "eco2d";
patterns =
{
"*.c",
"*.cpp",
"*.jai",
"*.odin",
"*.zig",
"*.h",
"*.inc",
"*.bat",
"*.sh",
"*.4coder",
"*.txt",
"*.cmake",
};
blacklist_patterns =
{
".*",
"build/.*",
};
load_paths =
{
{
{ {"."}, .recursive = false, .relative = true }, .os = "win"
},
{
{ {"code"}, .recursive = true, .relative = true }, .os = "win"
},
};
command_list =
{
{
.name = "build",
.out = "*compilation*",
.footer_panel = true,
.save_dirty_files = true,
.cursor_at_end = false,
.cmd =
{
{ "cmake --build build", .os = "win" },
},
},
};
fkey_command[1] = "build";