|
|
@@ -48,10 +48,24 @@ |
|
|
|
|
|
|
|
<!-- FIXME: not for the static library! -->
|
|
|
|
<PostBuildEvent Condition="'$(Platform)'=='Win32'">
|
|
|
|
<Command>for %%I in ($(SdlLibs)) do xcopy /y /c /d %%I\*.dll "$(TargetDir)"</Command>
|
|
|
|
<Command>
|
|
|
|
set A=$(SdlLibs)
|
|
|
|
:again
|
|
|
|
for /f "tokens=1* delims=;" %%I in ("%A%") do (
|
|
|
|
if not "%%I" == "" xcopy /y /c /d "%%I"\*.dll "$(TargetDir)" && set A=%%J
|
|
|
|
if not "%%I" == "" goto again
|
|
|
|
)
|
|
|
|
</Command>
|
|
|
|
</PostBuildEvent>
|
|
|
|
<PostBuildEvent Condition="'$(Platform)'=='x64'">
|
|
|
|
<Command>for %%I in ($(SdlLibs)) do xcopy /y /c /d %%I\*.dll "$(TargetDir)"</Command>
|
|
|
|
<Command>
|
|
|
|
set A=$(SdlLibs)
|
|
|
|
:again
|
|
|
|
for /f "tokens=1* delims=;" %%I in ("%A%") do (
|
|
|
|
if not "%%I" == "" xcopy /y /c /d "%%I"\*.dll "$(TargetDir)" && set A=%%J
|
|
|
|
if not "%%I" == "" goto again
|
|
|
|
)
|
|
|
|
</Command>
|
|
|
|
</PostBuildEvent>
|
|
|
|
|
|
|
|
<!-- FIXME: not for the static library! -->
|
|
|
|