[ros-diffs] [janderwald] 22497: * fix idl build command * generate client/server headers/sources in intermediate directory

janderwald at svn.reactos.org janderwald at svn.reactos.org
Thu Jun 22 14:00:51 CEST 2006


Author: janderwald
Date: Thu Jun 22 16:00:51 2006
New Revision: 22497

URL: http://svn.reactos.ru/svn/reactos?rev=22497&view=rev
Log:
* fix idl build command
* generate client/server headers/sources in intermediate directory

Modified:
    trunk/reactos/tools/rbuild/backend/msvc/vcprojmaker.cpp

Modified: trunk/reactos/tools/rbuild/backend/msvc/vcprojmaker.cpp
URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/tools/rbuild/backend/msvc/vcprojmaker.cpp?rev=22497&r1=22496&r2=22497&view=diff
==============================================================================
--- trunk/reactos/tools/rbuild/backend/msvc/vcprojmaker.cpp (original)
+++ trunk/reactos/tools/rbuild/backend/msvc/vcprojmaker.cpp Thu Jun 22 16:00:51 2006
@@ -516,8 +516,9 @@
 					fprintf ( OUT, "\t\t\t\t\t<Tool\r\n" );
 					if (source_file.find(".idl") != string::npos)
 					{
-						fprintf ( OUT, "\t\t\t\t\t\tName=\"VCCustomBuildTool\"\r\n" );
-						fprintf ( OUT, "\t\t\t\t\t\tOutputs=\"$(OutDir)\\$(InputName).obj\"/>\r\n" );
+						fprintf ( OUT, "\t\t\t\t\t\tName=\"VCMIDLTool\"\r\n" );
+						fprintf ( OUT, "\t\t\t\t\t\tHeaderFileName=\"$(InputName).h\"\r\n" );
+						fprintf ( OUT, "\t\t\t\t\t\tOutputDirectory=\"$(IntDir)\"/>\r\n" );
 					}
 					else if ((source_file.find(".asm") != string::npos || tolower(source_file.at(source_file.size() - 1)) == 's'))
 					{




More information about the Ros-diffs mailing list