[*] Update/simplify batch/bash scripts for.now

This commit is contained in:
Reece Wilson 2022-03-11 17:02:32 +00:00
parent ca4f042fc7
commit ac9d592fbc
8 changed files with 6 additions and 19 deletions

View File

@ -1,4 +0,0 @@
#!/bin/bash
cd Public
premake5 gmake2 --target-linux --target-x86_64

View File

@ -1,4 +0,0 @@
#!/bin/bash
cd Public
premake5 cmakeau --target-linux --target-x86_64 --target-x86_32 --target-win32

View File

@ -1,4 +0,0 @@
#!/bin/bash
cd Public
premake5 cmakeau --target-linux --target-x86_64

View File

@ -1,4 +1,5 @@
#!/bin/bash
cd Global
premake5 gmake2 --target-linux --target-x86_64
premake5 gmake2 --target-linux --target-x86_64 "$@"
cd ..

View File

View File

@ -1,4 +0,0 @@
@echo off
cd Public
premake5 cmakeau --target-linux --target-x86_64 --target-x86_32 --target-win32

View File

@ -1,4 +1,5 @@
@echo off
cd Public
premake5 vs2022 --target-win32 --target-x86_64
premake5 vs2022 --target-win32 --target-x86_64 %*
cd ..

View File

@ -1,4 +1,5 @@
@echo off
cd Public
premake5 vs2022 --target-win32 --target-x86_32
premake5 vs2022 --target-win32 --target-x86_32 %*
cd ..