Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -1468,3 +1468,9 @@ Version history
- some optimizations to to reduce communication overhead
* fixed WindowsApp template to build with recent DMD

2025-10-12 version 1.5.0-beta2
* dbuild: add option to select the D runtime: none/druntime/phobos (druntime LDC only)
* dmdserver:
- fix always skipping debug statements
- fix some crashes in the frontend
* exclude \\.\C: from dependencies generated by LDC v1.40+
54 changes: 28 additions & 26 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ dmdserver_test:
devenv /Project "dmdserver" /Build "TestDebug|x64" visuald_vs10.sln

dparser:
cd vdc\abothe && $(MSBUILD15) vdserver.sln /p:Configuration=Release;Platform="Any CPU" /p:TargetFrameworkVersion=4.5.2 /p:DefineConstants=NET40 /t:Rebuild
cd vdc\abothe && $(MSBUILD15) vdserver.sln /p:Configuration=Release;Platform="Any CPU" /p:TargetFrameworkVersion=4.5.2 /p:DefineConstants=NET40 $(MSBUILD_REBUILD)
editbin /STACK:0x800000 bin\Release\DParserCOMServer\DParserCOMServer.exe

dparser_test:
Expand All @@ -94,18 +94,20 @@ fake_dparser:
if not exist bin\Release\DParserCOMServer\DParserCOMServer.exe echo dummy >bin\Release\DParserCOMServer\DParserCOMServer.exe
if not exist bin\Release\DParserCOMServer\D_Parser.dll echo dummy >bin\Release\DParserCOMServer\D_Parser.dll

MSBUILD_REBUILD = /verbosity:quiet /t:Rebuild

vdextension:
cd vdextensions && $(MSBUILD) vdextensions.csproj /p:Configuration=Release;Platform=AnyCPU /t:Rebuild
cd vdextensions && $(MSBUILD) vdextensions.csproj /p:Configuration=Release;Platform=AnyCPU $(MSBUILD_REBUILD)

vdext15:
cd vdextensions && $(MSBUILD) vdext15.csproj /p:Configuration=Release;Platform=AnyCPU /t:Rebuild
cd vdextensions && $(MSBUILD) vdext15.csproj /p:Configuration=Release;Platform=AnyCPU $(MSBUILD_REBUILD)

visualdwizard:
cd vdwizard && $(MSBUILD) VisualDWizard.csproj /p:Configuration=Release;Platform=AnyCPU /t:Rebuild
cd vdwizard && $(MSBUILD) VisualDWizard.csproj /p:Configuration=Release;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild12:
# cd msbuild\dbuild && devenv /Build "Release|AnyCPU" /Project "dbuild" dbuild.sln
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release;Platform=AnyCPU $(MSBUILD_REBUILD)

fake_dbuild12:
if not exist msbuild\dbuild\obj\release\nul md msbuild\dbuild\obj\release
Expand All @@ -114,7 +116,7 @@ fake_dbuild12:

dbuild14:
# cd msbuild\dbuild && devenv /Build "Release-v14|AnyCPU" /Project "dbuild" dbuild.sln
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v14;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v14;Platform=AnyCPU $(MSBUILD_REBUILD)

fake_dbuild14:
if not exist msbuild\dbuild\obj\release-v14\nul md msbuild\dbuild\obj\release-v14
Expand All @@ -123,7 +125,7 @@ fake_dbuild14:

dbuild15:
# cd msbuild\dbuild && devenv /Build "Release-v15|AnyCPU" /Project "dbuild" dbuild.sln
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v15;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v15;Platform=AnyCPU $(MSBUILD_REBUILD)

fake_dbuild15:
if not exist msbuild\dbuild\obj\release-v15\nul md msbuild\dbuild\obj\release-v15
Expand All @@ -132,65 +134,65 @@ fake_dbuild15:

dbuild16:
# cd msbuild\dbuild && devenv /Build "Release-v16|AnyCPU" /Project "dbuild" dbuild.sln
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v16;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v16;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild16_1:
# cd msbuild\dbuild && devenv /Build "Release-v16_1|AnyCPU" /Project "dbuild" dbuild.sln
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v16_1;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v16_1;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_0:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_0;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_0;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_1:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_1;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_1;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_2:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_2;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_2;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_3:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_3;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_3;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_4:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_4;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_4;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_5:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_5;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_5;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_6:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_6;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_6;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_7:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_7;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_7;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_8:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_8;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_8;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_9:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_9;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_9;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_10:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_10;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_10;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_11:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_11;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_11;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_12:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_12;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_12;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_13:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_13;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_13;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_14:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_14;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v17_14;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild17_all: dbuild17_0 dbuild17_1 dbuild17_2 dbuild17_3 dbuild17_4 dbuild17_5 dbuild17_6 dbuild17_7 \
dbuild17_8 dbuild17_9 dbuild17_10 dbuild17_11 dbuild17_12 dbuild17_13 dbuild17_14

dbuild18_0:
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v18_0;Platform=AnyCPU /t:Rebuild
cd msbuild\dbuild && $(MSBUILD) dbuild.csproj /p:Configuration=Release-v18_0;Platform=AnyCPU $(MSBUILD_REBUILD)

dbuild18_all: dbuild18_0

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
#define VERSION_MINOR 5
#define VERSION_REVISION 0
#define VERSION_BETA -beta
#define VERSION_BUILD 1
#define VERSION_BUILD 2
128 changes: 96 additions & 32 deletions build/build.visualdproj
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,12 @@
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="Win32" name="Release">
Expand Down Expand Up @@ -250,8 +254,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="Win32" name="Release COFF32">
Expand Down Expand Up @@ -377,8 +385,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="Win32" name="Debug COFF32">
Expand Down Expand Up @@ -504,8 +516,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="Win32" name="TestDebug">
Expand Down Expand Up @@ -631,8 +647,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="Win32" name="Release LDC">
Expand Down Expand Up @@ -758,8 +778,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="x64" name="Debug">
Expand Down Expand Up @@ -885,8 +909,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="x64" name="Release">
Expand Down Expand Up @@ -1012,8 +1040,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="x64" name="Release COFF32">
Expand Down Expand Up @@ -1139,8 +1171,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="x64" name="Debug COFF32">
Expand Down Expand Up @@ -1266,8 +1302,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="x64" name="TestDebug">
Expand Down Expand Up @@ -1393,8 +1433,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="x64" name="Release LDC">
Expand Down Expand Up @@ -1520,8 +1564,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="Win32" name="Debug LDC ARM">
Expand Down Expand Up @@ -1647,8 +1695,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="x64" name="Debug LDC ARM">
Expand Down Expand Up @@ -1774,8 +1826,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="Win32" name="Debug LDC">
Expand Down Expand Up @@ -1901,8 +1957,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Config platform="x64" name="Debug LDC">
Expand Down Expand Up @@ -2028,8 +2088,12 @@ echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<privatePhobos>0</privatePhobos>
<additionalOptions />
<preBuildCommand />
<postBuildCommand>echo Success &gt;&quot;$(TargetPath)&quot;
echo. &gt;&quot;$(TargetDir)\build.dep&quot;</postBuildCommand>
<postBuildCommand>
echo $(ProjectDir)\sdk.bat &gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\sdk_libs.bat &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo $(ProjectDir)\build.visualdproj &gt;&gt;&quot;$(TargetDir)\build.dep&quot;
echo Success &gt;&quot;$(TargetPath)&quot;
</postBuildCommand>
<filesToClean>*.obj;*.cmd;*.build;*.json;*.dep</filesToClean>
</Config>
<Folder name="build">
Expand Down
Loading
Loading