From 808dfc4d3ad64fce766076cf15492be2f4aa3880 Mon Sep 17 00:00:00 2001 From: NeGate Date: Thu, 2 Jun 2022 19:36:28 -0400 Subject: [PATCH] No 4coder :p --- project.4coder | 63 -------------------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 project.4coder diff --git a/project.4coder b/project.4coder deleted file mode 100644 index 03c29c1..0000000 --- a/project.4coder +++ /dev/null @@ -1,63 +0,0 @@ -version(1); - -project_name = "Ciabatta"; - -patterns = { - "*.c", - "*.cpp", - "*.ds", - "*.h", - "*.bat", - "*.vert", - "*.frag", - "*.geom", - "*.sh", - "*.4coder", -}; - -blacklist_patterns = { - ".*", -}; - -load_paths = { - { - { {"."}, .recursive = true, .relative = true }, .os = "win" - }, -}; - -command_list = { - { - .name = "build", - .out = "*compilation*", - .footer_panel = true, - .save_dirty_files = true, - .cursor_at_end = true, - .cmd = { - { "make", .os = "win" }, - }, - }, - { - .name = "bake", - .out = "*compilation*", - .footer_panel = true, - .save_dirty_files = true, - .cursor_at_end = true, - .cmd = { - { "test\\bake.bat", .os = "win" }, - }, - }, - { - .name = "debug", - .out = "*compilation*", - .footer_panel = true, - .save_dirty_files = true, - .cursor_at_end = true, - .cmd = { - { "remedybg.exe test.rdbg", .os = "win" }, - }, - }, -}; - -fkey_command[1] = "build"; -fkey_command[2] = "bake"; -fkey_command[3] = "debug";