Setup build enviorment

This commit is contained in:
Jaby
2022-08-21 16:25:37 +02:00
parent 90eac84874
commit 0c52689ebe
9 changed files with 185 additions and 4 deletions

13
build_all.bat Normal file
View File

@@ -0,0 +1,13 @@
@echo off
rem build_all [clean]
set build_type=build
IF NOT "%~1" == "" (
set build_type=%~1
)
cd src\Library
call run_make.bat %build_type% release
cd ..\Tools\
call build_all.bat %build_type%