diff options
| author | Raymaekers Luca <luca@spacehb.net> | 2025-10-01 16:53:49 +0200 |
|---|---|---|
| committer | Raymaekers Luca <luca@spacehb.net> | 2025-10-01 16:53:49 +0200 |
| commit | aadff4d1cf17cc23f6f38ab0da51baabfeb9f9d1 (patch) | |
| tree | f2755f80c5067ae97b667b4c5607d4502805d078 /project.4coder | |
| parent | 4ea5261f32ec8acd4cdad7c364f57e6ebc86866a (diff) | |
checkpoint
Diffstat (limited to 'project.4coder')
| -rw-r--r-- | project.4coder | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/project.4coder b/project.4coder new file mode 100644 index 0000000..76694ac --- /dev/null +++ b/project.4coder @@ -0,0 +1,41 @@ +version(2); +project_name = "wasmpoc"; +patterns = { + "*.c", + "*.cpp", + "*.h", + "*.m", + "*.bat", + "*.sh", + "*.4coder", +}; +blacklist_patterns = { + ".*", +}; +load_paths_base = { + { ".", .relative = true, .recursive = true, }, +}; +load_paths = { + .win = load_paths_base, + .linux = load_paths_base, + .mac = load_paths_base, +}; + +commands = { + .build = { .out = "*compilation*", .footer_panel = true, .save_dirty_files = true, + .linux = "./code/build.sh", + .win = ".\code\build.bat", }, + .run = { .out = "*run*", .save_dirty_files = false, + .win = ".\build\win32_handmade.exe", + .linux = "$BROWSER localhost:8000", + .mac = "./build/linux_handmade", }, + .debug = { .footer_panel = false, .save_dirty_files = false, + .linux = "gf2 ./build/linux_handmade", + }, +}; + +fkey_command = { + .F1 = "build", + .F2 = "run", + .F4 = "debug", +}; |
