diff options
| author | Ray <raysan5@gmail.com> | 2019-04-24 11:42:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-24 11:42:39 +0200 |
| commit | 96cd3b5abcbabd421d9017a0f764c0b5313e55db (patch) | |
| tree | f3f28c9f9b058517e2adb8ae34089bc197b63795 /projects/4coder/project.4coder | |
| parent | 600cdb61a306cd1d5dd78679c0acceb91287b193 (diff) | |
| parent | 6d65aa1acbe0bfa3212610ea3de3d71b6dd9324f (diff) | |
| download | raylib-96cd3b5abcbabd421d9017a0f764c0b5313e55db.tar.gz raylib-96cd3b5abcbabd421d9017a0f764c0b5313e55db.zip | |
Merge pull request #815 from ChrisDill/testing
Added project for 4coder
Diffstat (limited to 'projects/4coder/project.4coder')
| -rw-r--r-- | projects/4coder/project.4coder | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/projects/4coder/project.4coder b/projects/4coder/project.4coder new file mode 100644 index 00000000..e466bb4f --- /dev/null +++ b/projects/4coder/project.4coder @@ -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"; |
