From 02077305a5b63fcf7242ac909d8caed5cc3cf18f Mon Sep 17 00:00:00 2001 From: talha Date: Sun, 31 Mar 2024 18:22:14 +0500 Subject: Completed lighting, Model loading --- project.4coder | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 project.4coder (limited to 'project.4coder') 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 -- cgit v1.2.3