4coder/project.4coder

55 lines
1.5 KiB
Plaintext
Raw Normal View History

version(1);
project_name = "4coder";
patterns = {
"*.c",
"*.cpp",
"*.h",
"*.m",
"*.bat",
"*.sh",
"*.4coder",
"*.txt",
};
blacklist_patterns = {
".*",
};
load_paths_only = {
{"."},
};
load_paths = {
{ load_paths_only, .os = "win" },
{ load_paths_only, .os = "linux"},
{ load_paths_only, .os = "mac" },
};
2017-02-06 13:49:00 +00:00
build_x64_win32 = "echo build: x64 & bin\\build.bat";
build_x64_linux = "echo build: x64 & bin/build.sh";
build_x64_mac = "echo build: x64 & bin/build.sh";
2018-05-07 02:47:22 +00:00
command_list = {
{ .name = "build x64",
2018-06-04 08:57:36 +00:00
.out = "*compilation*", .footer_panel = true, .save_dirty_files = true,
.cmd = { {build_x64_win32, .os = "win" },
{build_x64_linux, .os = "linux"},
{build_x64_max , .os = "mac" }, }, },
2019-10-01 21:07:39 +00:00
{ .name = "run one time",
.out = "*run*", .footer_panel = false, .save_dirty_files = false,
2019-10-01 21:07:39 +00:00
.cmd = { { "pushd ..\\build & one_time", .os = "win" }, }, },
2019-09-27 03:52:29 +00:00
{ .name = "build C++ lexer generator",
.out = "*compilation*", .footer_panel = true, .save_dirty_files = true,
2019-10-01 23:34:54 +00:00
.cmd = { { "custom\\bin\\build_one_time custom\\languages\\4coder_cpp_lexer_gen.cpp ..\\build", .os = "win" }, }, },
2019-10-01 21:07:39 +00:00
2019-09-27 03:52:29 +00:00
{ .name = "build token tester",
.out = "*compilation*", .footer_panel = true, .save_dirty_files = true,
2019-10-01 23:34:54 +00:00
.cmd = { { "custom\\bin\\build_one_time custom\\languages\\4coder_cpp_lexer_test.cpp ..\\build", .os = "win" }, }, }
};
2017-02-06 13:49:00 +00:00
2019-09-27 23:56:05 +00:00
fkey_command[1] = "build x64";
2019-10-01 21:07:39 +00:00
fkey_command[4] = "run one time";
fkey_command[5] = "build C++ lexer generator";
fkey_command[6] = "build token tester";
2019-09-27 03:52:29 +00:00