[bld] setup new feature for include path management

This commit is contained in:
Allen Webster
2021-09-25 17:37:33 -07:00
parent 70e630cab6
commit 3f5d4a96a9
9 changed files with 88 additions and 20 deletions
+18 -4
View File
@@ -76,8 +76,8 @@ command_list =
.cmd =
{
{ "git_bash bin\\build_examples.sh", .os = "win" },
{ "bin/build_tests.sh", .os = "linux" },
{ "bin/build_tests.sh", .os = "mac" },
{ "bin/build_examples.sh", .os = "linux" },
{ "bin/build_examples.sh", .os = "mac" },
},
},
{
@@ -89,8 +89,21 @@ command_list =
.cmd =
{
{ "git_bash bin\\run_examples.sh", .os = "win" },
{ "bin/build_tests.sh", .os = "linux" },
{ "bin/build_tests.sh", .os = "mac" },
{ "bin/run_examples.sh", .os = "linux" },
{ "bin/run_examples.sh", .os = "mac" },
},
},
{
.name = "type_info_example",
.out = "*run*",
.footer_panel = false,
.save_dirty_files = true,
.cursor_at_end = false,
.cmd =
{
{ "git_bash bin\\type_info_example.sh", .os = "win" },
{ "bin/type_info_example.sh", .os = "linux" },
{ "bin/type_info_example.sh", .os = "mac" },
},
},
};
@@ -99,3 +112,4 @@ fkey_command[1] = "build_tests";
fkey_command[2] = "run_tests";
fkey_command[3] = "build_examples";
fkey_command[4] = "run_examples";
fkey_command[5] = "type_info_example";