feat(scripts): reorganise based on feedback (#535)

This commit is contained in:
Yimura 2022-10-29 20:03:06 +02:00 committed by GitHub
parent a7fa050ca6
commit 99c5c6e8db
8 changed files with 19 additions and 11 deletions

View File

@ -51,7 +51,7 @@ cd YimMenu
Generate project files:
```bash
GenerateProjects.bat
script.bat
```
Now, you will be able to open the solution, and simply build it in Visual Studio.

View File

@ -1 +0,0 @@
start cmd.exe

14
script.bat Normal file
View File

@ -0,0 +1,14 @@
@echo off
git submodule update --init
echo "Updating current branch and submodules"
git pull && git submodule update
echo "Generating project files"
premake5 vs2022
IF %ERRORLEVEL% NEQ 0 (
PAUSE
)
echo "Opening project..."
start BigBaseV2.sln

View File

@ -1 +0,0 @@
git submodule update --init

View File

@ -1,5 +0,0 @@
@echo off
premake5 vs2022
IF %ERRORLEVEL% NEQ 0 (
PAUSE
)

View File

@ -1 +0,0 @@
start BigBaseV2.sln

View File

@ -1 +1,4 @@
git checkout master && call update_repo.bat
@echo off
git checkout master
git pull && git submodule update

View File

@ -1 +0,0 @@
git pull && git submodule update