Hi

I attach a patch to fix the following compiler error on VS2008
"CVTRES : fatal error CVT1103: cannot read file".

I got the error on tests projects.

The projects use the same IntermediateDirectory settings.
The outputs of svn.rc is the same path.

So the error occurs when compiling the test projects in parallel.

[[[
Fix compiler errors on VS2008 for test projects.

* build/generator/templates/vcnet_vcproj.ezt
  () : append Intermediate Directory to $(ProjectName)
       not to conflict output directories.
]]]


-- 
Masaru Tsuchiyama <m.tma...@gmail.com>
Index: build/generator/templates/vcnet_vcproj.ezt
===================================================================
--- build/generator/templates/vcnet_vcproj.ezt  (revision 1510955)
+++ build/generator/templates/vcnet_vcproj.ezt  (working copy)
@@ -32,7 +32,7 @@
                        Name="[configs.name]|[platforms]"
                        
OutputDirectory="..\..\..\[configs.name]\[target.output_dir]"
                        BuildLogFile="$(IntDir)\BuildLog_$(ProjectName).htm"
-                       
IntermediateDirectory="..\..\..\[configs.name]\[target.intermediate_dir]"
+                       
IntermediateDirectory="..\..\..\[configs.name]\[target.intermediate_dir]\$(ProjectName)"
                        ConfigurationType="[target_type]"[is configs.name 
"Release"]
                        WholeProgramOptimization="FALSE"[end]>
                        <Tool

Reply via email to