mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-01-04 00:23:27 +08:00
14 lines
247 B
Batchfile
14 lines
247 B
Batchfile
@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 |