summaryrefslogtreecommitdiff
path: root/project.4coder
diff options
context:
space:
mode:
Diffstat (limited to 'project.4coder')
-rw-r--r--project.4coder34
1 files changed, 34 insertions, 0 deletions
diff --git a/project.4coder b/project.4coder
new file mode 100644
index 0000000..1774b92
--- /dev/null
+++ b/project.4coder
@@ -0,0 +1,34 @@
+version(1);
+
+project_name = "learn-opengl-simple";
+
+patterns = {
+ "*.cpp",
+ "*.c",
+ "*.h",
+ "*.bat",
+ "*.sh",
+ "*.4coder",
+};
+
+blacklist_patterns = {
+ ".*",
+};
+
+load_paths = {
+ {{
+ {".", .relative = true, .recursive = true, }
+ }, .os = "win" },
+};
+
+command_list = {
+ { .name = "build-debug",
+ .out = "*compilation*",
+ .footer_panel = true,
+ .save_dirty_files = true,
+ .cursor_at_end = false,
+ .cmd = {{"build.bat ", .os = "win"}},
+ },
+};
+
+fkey_command[1] = "build-debug"; \ No newline at end of file