feat(scripts): reorganise based on feedback (#535)
This commit is contained in:
parent
9817853935
commit
64b922af89
@ -51,7 +51,7 @@ cd YimMenu
|
|||||||
|
|
||||||
Generate project files:
|
Generate project files:
|
||||||
```bash
|
```bash
|
||||||
GenerateProjects.bat
|
script.bat
|
||||||
```
|
```
|
||||||
|
|
||||||
Now, you will be able to open the solution, and simply build it in Visual Studio.
|
Now, you will be able to open the solution, and simply build it in Visual Studio.
|
||||||
|
@ -1 +0,0 @@
|
|||||||
start cmd.exe
|
|
14
script.bat
Normal file
14
script.bat
Normal 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
|
@ -1 +0,0 @@
|
|||||||
git submodule update --init
|
|
@ -1,5 +0,0 @@
|
|||||||
@echo off
|
|
||||||
premake5 vs2022
|
|
||||||
IF %ERRORLEVEL% NEQ 0 (
|
|
||||||
PAUSE
|
|
||||||
)
|
|
@ -1 +0,0 @@
|
|||||||
start BigBaseV2.sln
|
|
@ -1 +1,4 @@
|
|||||||
git checkout master && call update_repo.bat
|
@echo off
|
||||||
|
git checkout master
|
||||||
|
|
||||||
|
git pull && git submodule update
|
@ -1 +0,0 @@
|
|||||||
git pull && git submodule update
|
|
Reference in New Issue
Block a user