mirror of https://gitlab.com/basile.b/dexed.git
dastworx, add win build script
This commit is contained in:
parent
3b6b3c4d65
commit
989d2ceca5
|
@ -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
|
|
@ -1,6 +1,5 @@
|
|||
cd ..
|
||||
git submodule update --init
|
||||
git submodule foreach git checkout master
|
||||
cd dastworx
|
||||
|
||||
#iz sources
|
||||
|
|
Loading…
Reference in New Issue