From cf961d4b3a68f828924edc05ab830fb494ba17c6 Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Thu, 27 Feb 2020 18:29:16 -0800 Subject: [PATCH] More updating project.4coder for linux commands --- project.4coder | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/project.4coder b/project.4coder index d3c1ec54..24fc991f 100644 --- a/project.4coder +++ b/project.4coder @@ -53,11 +53,13 @@ command_list = { { .name = "run one time", .out = "*run*", .footer_panel = false, .save_dirty_files = false, .cmd = { { "pushd ..\\build & one_time", .os = "win" }, - { "pushd ../build & one_time", .os = "mac" }, }, }, + { "pushd ../build & one_time", .os = "linux" }, + { "pushd ../build & one_time", .os = "mac" }, }, }, { .name = "build custom api docs", .out = "*compilation*", .footer_panel = true, .save_dirty_files = true, .cmd = { { "custom\\bin\\build_one_time docs\\4ed_doc_custom_api_main.cpp ..\\build", .os = "win" }, + { "custom/bin/build_one_time.sh docs/4ed_doc_custom_api_main.cpp ../build", .os = "linux" }, { "custom/bin/build_one_time.sh docs/4ed_doc_custom_api_main.cpp ../build", .os = "mac" }, }, }, { .name = "build C++ lexer generator",