dastworx, add win build script

This commit is contained in:
Basile Burg 2016-07-02 23:25:27 +02:00
parent 3b6b3c4d65
commit 989d2ceca5
2 changed files with 29 additions and 1 deletions

29
dastworx/build.bat Normal file
View File

@ -0,0 +1,29 @@
cd ..
git submodule update --init
::git submodule foreach git checkout master
cd dastworx
::iz sources
set iz=
for /r "../etc/iz/import/" %%F in (*.d) do call set iz=%%iz%% "%%F"
::dparse sources
set dparse=
for /r "../etc/libdparse/src/" %%F in (*.d) do call set dparse=%%dparse%% "%%F"
::dast sources
set dast=
for /r "src/" %%F in (*.d) do call set dast=%%dast%% "%%F"
echo building...
::build
dmd %dast% %dparse% %iz% ^
-O -release -inline -boundscheck=off ^
-Isrc -I"..\etc\iz\import" -I"..\etc\libdparse\src" ^
-of"..\bin\dastworx"
::cleanup
del ..\bin\dastworx.o
echo ...done

View File

@ -1,6 +1,5 @@
cd ..
git submodule update --init
git submodule foreach git checkout master
cd dastworx
#iz sources