18 lines
234 B
Batchfile
18 lines
234 B
Batchfile
@echo off
|
|
rem build_all [clean]
|
|
|
|
set build_type=build
|
|
|
|
IF NOT "%~1" == "" (
|
|
set build_type=%~1
|
|
)
|
|
|
|
mkdir bin\
|
|
cd src\Tools\
|
|
call build_all.bat %build_type%
|
|
|
|
cd ..\Library\
|
|
call run_make.bat %build_type% release
|
|
|
|
cd ..\..\
|
|
PAUSE |