summaryrefslogtreecommitdiff
path: root/project.4coder
diff options
context:
space:
mode:
authortalha <talha@talhaamir.xyz>2024-03-31 18:22:14 +0500
committertalha <talha@talhaamir.xyz>2024-03-31 18:22:14 +0500
commit02077305a5b63fcf7242ac909d8caed5cc3cf18f (patch)
tree9940db9786f9496e3a3a872955591c21b433632f /project.4coder
parent82de1ef9f3d7fd9268af7de92bfc929f48f5b3bb (diff)
Completed lighting, Model loading
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