Removed extra files
This commit is contained in:
@@ -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
|
||||
BIN
premake5.exe
BIN
premake5.exe
Binary file not shown.
@@ -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";
|
||||
Reference in New Issue
Block a user