dont use a linux shell script to auto build libdexed-d

This commit is contained in:
Basile Burg 2020-05-05 14:42:29 +02:00
parent 92945de403
commit fe566e0115
2 changed files with 3 additions and 14 deletions

View File

@ -448,7 +448,7 @@
<Define1 Value="GTK_REMOVE_CLIPBOARD_NULL"/> <Define1 Value="GTK_REMOVE_CLIPBOARD_NULL"/>
</OtherDefines> </OtherDefines>
<ExecuteBefore> <ExecuteBefore>
<Command Value="bash dside.sh DEBUG"/> <Command Value="dub build --build=debug --compiler=ldc2 --root=..\dexed-d"/>
</ExecuteBefore> </ExecuteBefore>
</Other> </Other>
</CompilerOptions> </CompilerOptions>
@ -497,7 +497,7 @@
<Other> <Other>
<CustomOptions Value="-dDEBUG"/> <CustomOptions Value="-dDEBUG"/>
<ExecuteBefore> <ExecuteBefore>
<Command Value="bash dside.sh"/> <Command Value="dub build --compiler=ldc2 --root=..\dexed-d"/>
</ExecuteBefore> </ExecuteBefore>
</Other> </Other>
</CompilerOptions> </CompilerOptions>
@ -917,7 +917,7 @@
<Define1 Value="GTK_REMOVE_CLIPBOARD_NULL"/> <Define1 Value="GTK_REMOVE_CLIPBOARD_NULL"/>
</OtherDefines> </OtherDefines>
<ExecuteBefore> <ExecuteBefore>
<Command Value="bash dside.sh RELEASE"/> <Command Value="dub build --build=release --compiler=ldc2 --root=..\dexed-d"/>
</ExecuteBefore> </ExecuteBefore>
</Other> </Other>
</CompilerOptions> </CompilerOptions>

View File

@ -1,11 +0,0 @@
cd ../dexed-d
if [ "$1" == "RELEASE" ]; then
dub build --build=release --compiler=ldc2
elif [ "$1" == "DEBUG" ]; then
dub build --build=debug --compiler=ldc2
elif [ "$1" == "" ]; then
dub build --compiler=ldc2
fi
cd ../lazproj