mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-04 11:35:06 +03:00
Finished basic GLTF asset baking thread safe
This commit is contained in:
58
project.4coder
Normal file
58
project.4coder
Normal file
@@ -0,0 +1,58 @@
|
||||
version(1);
|
||||
|
||||
project_name = "Nuake";
|
||||
|
||||
patterns = {
|
||||
"*.c",
|
||||
"*.cpp",
|
||||
"*.h",
|
||||
"*.hpp",
|
||||
"*.lua",
|
||||
"*.cs",
|
||||
"*.hlsl",
|
||||
"*.frag",
|
||||
"*.vert",
|
||||
"*.4coder"
|
||||
};
|
||||
|
||||
blacklist_patterns = {
|
||||
".*",
|
||||
};
|
||||
|
||||
load_paths = {
|
||||
{
|
||||
{ {"."}, .recursive = false, .relative = true }, .os = "win"
|
||||
},
|
||||
{
|
||||
{ {"Nuake"}, .recursive = false, .relative = true }, .os = "win"
|
||||
},
|
||||
{
|
||||
{ {"Nuake/src"}, .recursive = true, .relative = true }, .os = "win"
|
||||
}
|
||||
};
|
||||
|
||||
command_list = {
|
||||
{
|
||||
.name = "build",
|
||||
.out = "*compilation*",
|
||||
.footer_panel = true,
|
||||
.save_dirty_files = true,
|
||||
.cursor_at_end = true,
|
||||
.cmd = {
|
||||
{ "build.bat Debug Active", .os = "win" },
|
||||
},
|
||||
},
|
||||
{
|
||||
.name = "run",
|
||||
.out = "*compilation*",
|
||||
.footer_panel = true,
|
||||
.save_dirty_files = true,
|
||||
.cursor_at_end = true,
|
||||
.cmd = {
|
||||
{ "run.bat", .os = "win" },
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
fkey_command[1] = "build";
|
||||
fkey_command[5] = "run";
|
||||
Reference in New Issue
Block a user