[cocos2dx] Fix VS project to copy resources to new required location on Windows.

This commit is contained in:
badlogic 2019-09-19 15:44:52 +02:00
parent 8ba4bf269b
commit 9cfe697cfd

View File

@ -99,7 +99,7 @@
<ItemDefinitionGroup> <ItemDefinitionGroup>
<CustomBuildStep> <CustomBuildStep>
<Command>if not exist "$(OutDir)" mkdir "$(OutDir)" <Command>if not exist "$(OutDir)" mkdir "$(OutDir)"
xcopy "$(ProjectDir)..\Resources" "$(OutDir)" /D /E /I /F /Y xcopy "$(ProjectDir)..\Resources" "$(OutDir)\Resources" /D /E /I /F /Y
</Command> </Command>
<Outputs>$(TargetName).cab</Outputs> <Outputs>$(TargetName).cab</Outputs>
<Inputs>$(TargetFileName)</Inputs> <Inputs>$(TargetFileName)</Inputs>