--- trunk/reactos/tools/rbuild/backend/msvc/msvcmaker.cpp 2005-10-19 00:56:49 UTC (rev 18584)
+++ trunk/reactos/tools/rbuild/backend/msvc/msvcmaker.cpp 2005-10-19 01:59:25 UTC (rev 18585)
@@ -50,7 +50,7 @@
string module_type = GetExtension(module.GetTargetName());
bool lib = (module_type == ".lib") || (module_type == ".a");
- bool dll = (module_type == ".dll");
+ bool dll = (module_type == ".dll") || (module_type == ".cpl");
bool exe = (module_type == ".exe");
// TODO FIXME - need more checks here for 'sys' and possibly 'drv'?
@@ -555,6 +555,7 @@
// TODO FIXME - do we need their kludge?
//if ( module.name == "ntdll" ) fprintf ( OUT, " /nodefaultlib" ); // FIXME: Kludge
if ( dll ) fprintf ( OUT, " /def:\"%s.def\"", module.name.c_str() );
+ if (( dll ) && ( module_type == ".cpl")) fprintf ( OUT, " /out:\"Win32\\%s%s\"", module.name.c_str(), module_type.c_str() );
if ( debug ) fprintf ( OUT, " /pdbtype:sept" );
fprintf ( OUT, "\r\n" );
}