mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-07-14 17:12:59 -07:00
git subrepo clone (merge) https://github.com/HarbourMasters/otrgui.git OTRGui
subrepo: subdir: "OTRGui" merged: "a6066a251" upstream: origin: "https://github.com/HarbourMasters/otrgui.git" branch: "master" commit: "a6066a251" git-subrepo: version: "0.4.1" origin: "???" commit: "???"
This commit is contained in:
parent
442a88f03b
commit
f52a2a6406
1018 changed files with 511803 additions and 0 deletions
54
OTRGui/libs/raylib/projects/4coder/project.4coder
Normal file
54
OTRGui/libs/raylib/projects/4coder/project.4coder
Normal file
|
@ -0,0 +1,54 @@
|
|||
version(1);
|
||||
|
||||
project_name = "raylib-example";
|
||||
|
||||
patterns = {
|
||||
"*.cpp",
|
||||
"*.c",
|
||||
"*.h",
|
||||
"*.bat",
|
||||
"*.sh",
|
||||
"*.4coder",
|
||||
"Makefile",
|
||||
};
|
||||
|
||||
blacklist_patterns = {
|
||||
".*",
|
||||
};
|
||||
|
||||
load_paths = {
|
||||
{ { {".", .relative = true, .recursive = true, } }, .os = "win" },
|
||||
{ { {".", .relative = true, .recursive = true, } }, .os = "linux" },
|
||||
{ { {".", .relative = true, .recursive = true, } }, .os = "mac" },
|
||||
};
|
||||
|
||||
command_list = {
|
||||
{ .name = "clean",
|
||||
.out = "*clean*", .footer_panel = true, .save_dirty_files = false, .cursor_at_end = true,
|
||||
.cmd = {
|
||||
{"mingw32-make clean", .os = "win"},
|
||||
{"make clean", .os = "linux"},
|
||||
{"make clean", .os = "mac"},
|
||||
},
|
||||
},
|
||||
{ .name = "build",
|
||||
.out = "*compile*", .footer_panel = true, .save_dirty_files = true, .cursor_at_end = false,
|
||||
.cmd = {
|
||||
{"mingw32-make", .os = "win"},
|
||||
{"make", .os = "linux"},
|
||||
{"make", .os = "mac"},
|
||||
},
|
||||
},
|
||||
{ .name = "run",
|
||||
.out = "*run*", .footer_panel = true, .save_dirty_files = false, .cursor_at_end = true,
|
||||
.cmd = {
|
||||
{".\game.exe", .os = "win"},
|
||||
{"./game", .os = "linux"},
|
||||
{"./game", .os = "mac"},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
fkey_command[3] = "clean";
|
||||
fkey_command[4] = "build";
|
||||
fkey_command[5] = "run";
|
Loading…
Add table
Add a link
Reference in a new issue