您的位置:首页 > 产品设计 > UI/UE

Prebuild Command line(Copy) . vc2008预生成事件和生成后事件的用法

2012-06-28 19:45 387 查看
xcopy $(SolutionDir)/PreBuild/Share $(SolutionDir)/Debug/ /s /e /c /y
xcopy $(SolutionDir)/PreBuild/Debug $(SolutionDir)/Debug/ /s /e /c /y

xcopy $(SolutionDir)/PreBuild/Release $(SolutionDir)/Release/ /s /e /c /y
xcopy $(SolutionDir)/PreBuild/Share $(SolutionDir)/Release/ /s /e /c /y

if $(ConfigurationName) == Debug goto :debug
:release
xcopy $(SolutionDir)/PreBuild/Share $(SolutionDir)/Release/ /s /e /c /y
xcopy $(SolutionDir)/PreBuild/Release $(SolutionDir)/Release/ /s /e /c /y
goto :exit

:debug
xcopy $(SolutionDir)/PreBuild/Share $(SolutionDir)/Debug/ /s /e /c /y
xcopy $(SolutionDir)/PreBuild/Debug $(SolutionDir)/Debug/ /s /e /c /y
:exit
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: