Created
March 31, 2016 05:44
-
-
Save 0xlitf/d3eea448e74279dbebd55bf57163c188 to your computer and use it in GitHub Desktop.
vs编译完成自动拷贝dll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo copy dlls to bin | |
if $(PlatformTarget)==x64 ( | |
xcopy "$(SolutionDir)built\$(ProjectName)\$(Platform)\$(Configuration)\*.dll" "$(SolutionDir)$(Platform)\$(Configuration)\bin" /y | |
) | |
if $(PlatformTarget)==x86 ( | |
xcopy "$(SolutionDir)built\$(ProjectName)\$(Platform)\$(Configuration)\*.dll" "$(SolutionDir)$(Platform)\$(Configuration)\bin" /y | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment