Removed extra files

This commit is contained in:
antopilo
2025-01-30 22:49:01 -05:00
parent 07f93c0509
commit a4e7e7d530
4 changed files with 0 additions and 130 deletions

View File

@@ -1,66 +0,0 @@
#!/bin/bash
function -r {
premake5 gmake;
make config=release all;
}
function -d {
premake5 gmake;
make config=debug all;
}
function -a {
bash .build_assets.sh;
}
function -c {
make clean;
echo -e "=====Cleaning done=====";
}
function -h {
echo -e "
==========================================================================
run ./build.sh -r to compile for release
run ./build.sh -d to compile for debug
run ./build.sh -c to run make clean (start fresh)
run ./build.sh -h to read this msg :3
==========================================================================
";
}
### command list ###
case $1 in
-r)
-r
;;
-d)
-d
;;
-a)
-a
;;
-c)
-c
;;
-h)
-h
;;
*)
echo -e "
==========================================================================
run ./build.sh -r to compile for release
run ./build.sh -d to compile for debug
run ./build.sh -c to run make clean (start fresh)
run ./build.sh -h to read this msg :3
==========================================================================
"
esac

Binary file not shown.

View File

@@ -1,64 +0,0 @@
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/src"}, .recursive = true, .relative = true }, .os = "win"
},
{
{ {"Editor/src"}, .recursive = true, .relative = true }, .os = "win"
},
{
{ {"NuakeNet/src"}, .recursive = true, .relative = true }, .os = "win"
},
{
{ {"Runtime"}, .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";