svnno****@sourc*****
svnno****@sourc*****
2016年 1月 18日 (月) 18:22:56 JST
Revision: 6262 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/6262 Author: doda Date: 2016-01-18 18:22:55 +0900 (Mon, 18 Jan 2016) Log Message: ----------- OutDir にスペースが含まれているとビルドに失敗するのを修正 Modified Paths: -------------- trunk/ttssh2/ttxssh/ttxssh.v12.vcxproj trunk/ttssh2/ttxssh/ttxssh.v14.vcxproj -------------- next part -------------- Modified: trunk/ttssh2/ttxssh/ttxssh.v12.vcxproj =================================================================== --- trunk/ttssh2/ttxssh/ttxssh.v12.vcxproj 2016-01-14 13:32:04 UTC (rev 6261) +++ trunk/ttssh2/ttxssh/ttxssh.v12.vcxproj 2016-01-18 09:22:55 UTC (rev 6262) @@ -51,7 +51,7 @@ </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <PreBuildEvent> - <Command>$(OutDir)puttyrev.exe</Command> + <Command>"$(OutDir)puttyrev.exe"</Command> </PreBuildEvent> <Midl> <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> @@ -204,4 +204,4 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> -</Project> \ No newline at end of file +</Project> Modified: trunk/ttssh2/ttxssh/ttxssh.v14.vcxproj =================================================================== --- trunk/ttssh2/ttxssh/ttxssh.v14.vcxproj 2016-01-14 13:32:04 UTC (rev 6261) +++ trunk/ttssh2/ttxssh/ttxssh.v14.vcxproj 2016-01-18 09:22:55 UTC (rev 6262) @@ -51,7 +51,7 @@ </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <PreBuildEvent> - <Command>$(OutDir)puttyrev.exe</Command> + <Command>"$(OutDir)puttyrev.exe"</Command> </PreBuildEvent> <Midl> <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> @@ -99,7 +99,7 @@ </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <PreBuildEvent> - <Command>$(OutDir)puttyrev.exe</Command> + <Command>"$(OutDir)puttyrev.exe"</Command> </PreBuildEvent> <Midl> <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> @@ -204,4 +204,4 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> -</Project> \ No newline at end of file +</Project>