11 lines
239 B
Batchfile
11 lines
239 B
Batchfile
|
@echo off
|
||
|
echo Clean up ..
|
||
|
REM Does nothing for now
|
||
|
REM In the future we might want to remove certain files, if they exist, when re-generating the solution
|
||
|
echo Creating Solution for Yoggie engine...
|
||
|
|
||
|
.\tools\premake5.exe vs2022
|
||
|
|
||
|
|
||
|
|
||
|
pause
|