set most of trunk svn property eol-style:native
[reactos.git] / reactos / tools / rbuild / backend / msvc / vcprojmaker.cpp
index 72643bb..7fe4df2 100644 (file)
-/*\r
- * Copyright (C) 2002 Patrik Stridvall\r
- * Copyright (C) 2005 Royce Mitchell III\r
- * Copyright (C) 2006 HervĂ© Poussineau\r
- * Copyright (C) 2006 Christoph von Wittich\r
- *\r
- * This program is free software; you can redistribute it and/or modify\r
- * it under the terms of the GNU General Public License as published by\r
- * the Free Software Foundation; either version 2 of the License, or\r
- * (at your option) any later version.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program; if not, write to the Free Software\r
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\r
- */\r
-\r
-#ifdef _MSC_VER\r
-#pragma warning ( disable : 4786 )\r
-#endif//_MSC_VER\r
-\r
-#include <string>\r
-#include <vector>\r
-#include <set>\r
-\r
-#include <stdio.h>\r
-\r
-#include "msvc.h"\r
-\r
-using std::string;\r
-using std::vector;\r
-using std::set;\r
-\r
-typedef set<string> StringSet;\r
-\r
-#ifdef OUT\r
-#undef OUT\r
-#endif//OUT\r
-\r
-MSVCConfiguration::MSVCConfiguration ( const OptimizationType optimization, const HeadersType headers, const std::string &name )\r
-{\r
-       this->optimization = optimization;\r
-       this->headers = headers;\r
-       if ( name != "" )\r
-               this->name = name;\r
-       else\r
-       {\r
-               std::string headers_name;\r
-               if ( headers == MSVCHeaders )\r
-                       headers_name = "";\r
-               else\r
-                       headers_name = " - Wine headers";\r
-               if ( optimization == Debug )\r
-                       this->name = "Debug" + headers_name;\r
-               else if ( optimization == Release )\r
-                       this->name = "Release" + headers_name;\r
-               else if ( optimization == Speed )\r
-                       this->name = "Speed" + headers_name;\r
-               else\r
-                       this->name = "Unknown" + headers_name;\r
-       }\r
-}\r
-\r
-void\r
-MSVCBackend::_generate_vcproj ( const Module& module )\r
-{\r
-       size_t i;\r
-\r
-       string vcproj_file = VcprojFileName(module);\r
-\r
-       string username = getenv ( "USERNAME" );\r
-       string computername = getenv ( "COMPUTERNAME" );\r
-       string vcproj_file_user = "";\r
-\r
-       if ((computername != "") && (username != ""))\r
-               vcproj_file_user = vcproj_file + "." + computername + "." + username + ".user";\r
-\r
-       printf ( "Creating MSVC.NET project: '%s'\n", vcproj_file.c_str() );\r
-       FILE* OUT = fopen ( vcproj_file.c_str(), "wb" );\r
-\r
-       vector<string> imports;\r
-       string module_type = GetExtension(module.GetTargetName());\r
-       bool lib = (module.type == ObjectLibrary) || (module.type == RpcClient) ||(module.type == RpcServer) || (module_type == ".lib") || (module_type == ".a");\r
-       bool dll = (module_type == ".dll") || (module_type == ".cpl");\r
-       bool exe = (module_type == ".exe") || (module_type == ".scr");\r
-       bool sys = (module_type == ".sys");\r
-\r
-       string path_basedir = module.GetPathToBaseDir ();\r
-       string intenv = Environment::GetIntermediatePath ();\r
-       string outenv = Environment::GetOutputPath ();\r
-       string outdir;\r
-       string intdir;\r
-       string vcdir;\r
-\r
-\r
-       if ( intenv == "obj-i386" )\r
-               intdir = path_basedir + "obj-i386"; /* append relative dir from project dir */\r
-       else\r
-               intdir = intenv;\r
-\r
-       if ( outenv == "output-i386" )\r
-               outdir = path_basedir + "output-i386";\r
-       else\r
-               outdir = outenv;\r
-\r
-       if ( configuration.UseVSVersionInPath )\r
-       {\r
-               vcdir = "\\" + _get_vc_dir();\r
-       }\r
-       // TODO FIXME - need more checks here for 'sys' and possibly 'drv'?\r
-\r
-       bool console = exe && (module.type == Win32CUI);\r
-\r
-       string vcproj_path = module.GetBasePath();\r
-       vector<string> source_files, resource_files, includes, includes_wine, libraries;\r
-       StringSet common_defines;\r
-       vector<const IfableData*> ifs_list;\r
-       ifs_list.push_back ( &module.project.non_if_data );\r
-       ifs_list.push_back ( &module.non_if_data );\r
-\r
-       string baseaddr;\r
-\r
-       while ( ifs_list.size() )\r
-       {\r
-               const IfableData& data = *ifs_list.back();\r
-               ifs_list.pop_back();\r
-               for ( i = 0; i < data.ifs.size(); i++ )\r
-               {\r
-                       const Property* property = _lookup_property( module, data.ifs[i]->property );\r
-                       if ( property != NULL )\r
-                       {\r
-                               if ( data.ifs[i]->value == property->value || data.ifs[i]->negated )\r
-                                       ifs_list.push_back ( &data.ifs[i]->data );\r
-                       }\r
-               }\r
-               const vector<File*>& files = data.files;\r
-               for ( i = 0; i < files.size(); i++ )\r
-               {\r
-                       // TODO FIXME - do we want the full path of the file here?\r
-                       string file = string(".") + &files[i]->name[vcproj_path.size()];\r
-\r
-                       if ( !stricmp ( Right(file,3).c_str(), ".rc" ) )\r
-                               resource_files.push_back ( file );\r
-                       else\r
-                               source_files.push_back ( file );\r
-               }\r
-               const vector<Include*>& incs = data.includes;\r
-               for ( i = 0; i < incs.size(); i++ )\r
-               {\r
-                       string path = Path::RelativeFromDirectory (\r
-                               incs[i]->directory,\r
-                               module.GetBasePath() );\r
-\r
-                       // add to another list win32api and include/wine directories\r
-                       if ( !strncmp(incs[i]->directory.c_str(), "include\\ddk", 11 ) ||\r
-                            !strncmp(incs[i]->directory.c_str(), "include\\crt", 11 ) ||\r
-                            !strncmp(incs[i]->directory.c_str(), "include\\GL", 10 ) ||\r
-                                !strncmp(incs[i]->directory.c_str(), "include\\ddk", 11 ) ||\r
-                                !strncmp(incs[i]->directory.c_str(), "include\\psdk", 12 ) ||\r
-                            !strncmp(incs[i]->directory.c_str(), "include\\reactos\\wine", 20 ) )\r
-                       {\r
-                               includes_wine.push_back ( path );\r
-                       }\r
-                       else\r
-                       {\r
-                               includes.push_back ( path );\r
-                       }\r
-               }\r
-               const vector<Library*>& libs = data.libraries;\r
-               for ( i = 0; i < libs.size(); i++ )\r
-               {\r
-                       string libpath = outdir + "\\" + libs[i]->importedModule->GetBasePath() + "\\" + _get_vc_dir() + "\\---\\" + libs[i]->name + ".lib";\r
-                       libraries.push_back ( libpath );\r
-               }\r
-               const vector<Define*>& defs = data.defines;\r
-               for ( i = 0; i < defs.size(); i++ )\r
-               {\r
-                       if ( defs[i]->value[0] )\r
-                               common_defines.insert( defs[i]->name + "=" + defs[i]->value );\r
-                       else\r
-                               common_defines.insert( defs[i]->name );\r
-               }\r
-               for ( i = 0; i < data.properties.size(); i++ )\r
-               {\r
-                       Property& prop = *data.properties[i];\r
-                       if ( strstr ( module.baseaddress.c_str(), prop.name.c_str() ) )\r
-                               baseaddr = prop.value;\r
-               }\r
-       }\r
-\r
-       vector<string> header_files;\r
-\r
-       string include_string;\r
-\r
-       fprintf ( OUT, "<?xml version=\"1.0\" encoding = \"Windows-1252\"?>\r\n" );\r
-       fprintf ( OUT, "<VisualStudioProject\r\n" );\r
-       fprintf ( OUT, "\tProjectType=\"Visual C++\"\r\n" );\r
-\r
-       if (configuration.VSProjectVersion.empty())\r
-               configuration.VSProjectVersion = MS_VS_DEF_VERSION;\r
-\r
-       fprintf ( OUT, "\tVersion=\"%s\"\r\n", configuration.VSProjectVersion.c_str() );\r
-       fprintf ( OUT, "\tName=\"%s\"\r\n", module.name.c_str() );\r
-       fprintf ( OUT, "\tProjectGUID=\"%s\"\r\n", module.guid.c_str() ); \r
-       fprintf ( OUT, "\tKeyword=\"Win32Proj\">\r\n" );\r
-\r
-       fprintf ( OUT, "\t<Platforms>\r\n" );\r
-       fprintf ( OUT, "\t\t<Platform\r\n" );\r
-       fprintf ( OUT, "\t\t\tName=\"Win32\"/>\r\n" );\r
-       fprintf ( OUT, "\t</Platforms>\r\n" );\r
-\r
-       //fprintf ( OUT, "\t<ToolFiles>\r\n" );\r
-       //fprintf ( OUT, "\t\t<ToolFile\r\n" );\r
-\r
-       //string path = Path::RelativeFromDirectory ( ProjectNode.name, module.GetBasePath() );\r
-       //path.erase(path.find(ProjectNode.name, 0), ProjectNode.name.size() + 1);\r
-\r
-       //fprintf ( OUT, "\t\t\tRelativePath=\"%sgccasm.rules\"/>\r\n", path.c_str() );\r
-       //fprintf ( OUT, "\t</ToolFiles>\r\n" );\r
-\r
-       int n = 0;\r
-\r
-       std::string output_dir;\r
-\r
-       fprintf ( OUT, "\t<Configurations>\r\n" );\r
-       for ( size_t icfg = 0; icfg < m_configurations.size(); icfg++ )\r
-       {\r
-               const MSVCConfiguration& cfg = *m_configurations[icfg];\r
-\r
-               bool debug = ( cfg.optimization == Debug );\r
-               bool release = ( cfg.optimization == Release );\r
-               bool speed = ( cfg.optimization == Speed );\r
-\r
-               fprintf ( OUT, "\t\t<Configuration\r\n" );\r
-               fprintf ( OUT, "\t\t\tName=\"%s|Win32\"\r\n", cfg.name.c_str() );\r
-\r
-               if ( configuration.UseVSConfigurationInPath )\r
-               {\r
-                       fprintf ( OUT, "\t\t\tOutputDirectory=\"%s\\%s%s\\%s\"\r\n", outdir.c_str (), module.GetBasePath ().c_str (), vcdir.c_str (), cfg.name.c_str() );\r
-                       fprintf ( OUT, "\t\t\tIntermediateDirectory=\"%s\\%s%s\\%s\"\r\n", intdir.c_str (), module.GetBasePath ().c_str (), vcdir.c_str (), cfg.name.c_str() );\r
-               }\r
-               else\r
-               {\r
-                       fprintf ( OUT, "\t\t\tOutputDirectory=\"%s\\%s%s\"\r\n", outdir.c_str (), module.GetBasePath ().c_str (), vcdir.c_str () );\r
-                       fprintf ( OUT, "\t\t\tIntermediateDirectory=\"%s\\%s%s\"\r\n", intdir.c_str (), module.GetBasePath ().c_str (), vcdir.c_str () );\r
-               }\r
-\r
-               fprintf ( OUT, "\t\t\tConfigurationType=\"%d\"\r\n", exe ? 1 : dll ? 2 : lib ? 4 : -1 );\r
-               fprintf ( OUT, "\t\t\tCharacterSet=\"2\">\r\n" );\r
-\r
-               fprintf ( OUT, "\t\t\t<Tool\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tName=\"VCCLCompilerTool\"\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tForcedIncludeFiles=\"warning.h\"\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tOptimization=\"%d\"\r\n", release ? 2 : 0 );\r
-\r
-               fprintf ( OUT, "\t\t\t\tAdditionalIncludeDirectories=\"" );\r
-               bool multiple_includes = false;\r
-               fprintf ( OUT, "./;" );\r
-               for ( i = 0; i < includes.size(); i++ )\r
-               {\r
-                       const std::string& include = includes[i];\r
-                       if ( strcmp ( include.c_str(), "." ) )\r
-                       {\r
-                               if ( multiple_includes )\r
-                                       fprintf ( OUT, ";" );\r
-                               fprintf ( OUT, "%s", include.c_str() );\r
-                               include_string += " /I " + include;\r
-                               multiple_includes = true;\r
-                       }\r
-               }\r
-               if ( cfg.headers == WineHeaders )\r
-               {\r
-                       for ( i = 0; i < includes_wine.size(); i++ )\r
-                       {\r
-                               const std::string& include = includes_wine[i];\r
-                               if ( multiple_includes )\r
-                                       fprintf ( OUT, ";" );\r
-                               fprintf ( OUT, "%s", include.c_str() );\r
-                               //include_string += " /I " + include;\r
-                               multiple_includes = true;\r
-                       }\r
-               }\r
-               fprintf ( OUT, "\"\r\n" );\r
-\r
-               StringSet defines = common_defines;\r
-\r
-               if ( debug )\r
-               {\r
-                       defines.insert ( "_DEBUG" );\r
-               }\r
-               else\r
-               {\r
-                       defines.insert ( "NDEBUG" );\r
-               }\r
-\r
-               if ( cfg.headers == MSVCHeaders )\r
-               {\r
-                       // this is a define in MinGW w32api, but not Microsoft's headers\r
-                       defines.insert ( "STDCALL=__stdcall" );\r
-               }\r
-\r
-               if ( lib || exe )\r
-               {\r
-                       defines.insert ( "_LIB" );\r
-               }\r
-               else\r
-               {\r
-                       defines.insert ( "_WINDOWS" );\r
-                       defines.insert ( "_USRDLL" );\r
-               }\r
-\r
-               fprintf ( OUT, "\t\t\t\tPreprocessorDefinitions=\"" );\r
-               for ( StringSet::iterator it1=defines.begin(); it1!=defines.end(); it1++ )\r
-               {\r
-                       if ( i > 0 )\r
-                               fprintf ( OUT, ";" );\r
-\r
-                       string unescaped = *it1;\r
-                       defines.erase(unescaped);\r
-                       const string& escaped = _replace_str(unescaped, "\"","&quot;");\r
-\r
-                       defines.insert(escaped);\r
-                       fprintf ( OUT, "%s", escaped.c_str() );\r
-               }\r
-               fprintf ( OUT, "\"\r\n" );\r
-\r
-               fprintf ( OUT, "\t\t\t\tMinimalRebuild=\"%s\"\r\n", speed ? "FALSE" : "TRUE" );\r
-               fprintf ( OUT, "\t\t\t\tBasicRuntimeChecks=\"%s\"\r\n", sys ? 0 : (debug ? "3" : "0") );\r
-               fprintf ( OUT, "\t\t\t\tRuntimeLibrary=\"%d\"\r\n", debug ? 1 : 5 );    // 1=/MTd 5=/MT\r
-               fprintf ( OUT, "\t\t\t\tBufferSecurityCheck=\"%s\"\r\n", sys ? "FALSE" : (debug ? "TRUE" : "FALSE" ));\r
-               fprintf ( OUT, "\t\t\t\tEnableFunctionLevelLinking=\"%s\"\r\n", debug ? "TRUE" : "FALSE" );\r
-               \r
-               if ( module.pch != NULL )\r
-               {\r
-                       fprintf ( OUT, "\t\t\t\tUsePrecompiledHeader=\"2\"\r\n" );\r
-                       string pch_path = Path::RelativeFromDirectory (\r
-                               module.pch->file.name,\r
-                               module.GetBasePath() );\r
-                       string::size_type pos = pch_path.find_last_of ("/");\r
-                       if ( pos != string::npos )\r
-                               pch_path.erase(0, pos+1);         \r
-                       fprintf ( OUT, "\t\t\t\tPrecompiledHeaderThrough=\"%s\"\r\n", pch_path.c_str() );\r
-               }\r
-               else\r
-               {\r
-                       fprintf ( OUT, "\t\t\t\tUsePrecompiledHeader=\"0\"\r\n" );\r
-               }\r
-\r
-               fprintf ( OUT, "\t\t\t\tWholeProgramOptimization=\"%s\"\r\n", release ? "TRUE" : "FALSE");\r
-               if ( release )\r
-               {\r
-                       fprintf ( OUT, "\t\t\t\tFavorSizeOrSpeed=\"1\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tStringPooling=\"true\"\r\n" );\r
-               }\r
-\r
-               fprintf ( OUT, "\t\t\t\tWarningLevel=\"%s\"\r\n", speed ? "0" : "3" );\r
-               fprintf ( OUT, "\t\t\t\tDetect64BitPortabilityProblems=\"%s\"\r\n", speed ? "FALSE" : "TRUE");\r
-               if ( !module.cplusplus )\r
-                       fprintf ( OUT, "\t\t\t\tCompileAs=\"1\"\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tCallingConvention=\"%d\"\r\n", 2 );     // 2=__stdcall 0=__cdecl\r
-               fprintf ( OUT, "\t\t\t\tDebugInformationFormat=\"%s\"/>\r\n", speed ? "0" : release ? "3": "4");        // 3=/Zi 4=ZI\r
-\r
-               fprintf ( OUT, "\t\t\t<Tool\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tName=\"VCCustomBuildTool\"/>\r\n" );\r
-\r
-               if ( lib )\r
-               {\r
-                       fprintf ( OUT, "\t\t\t<Tool\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tName=\"VCLibrarianTool\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tOutputFile=\"$(OutDir)/%s.lib\"/>\r\n", module.name.c_str() );\r
-               }\r
-               else\r
-               {\r
-                       fprintf ( OUT, "\t\t\t<Tool\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tName=\"VCLinkerTool\"\r\n" );\r
-                       if (module.GetEntryPoint(false) == "0")\r
-                               fprintf ( OUT, "AdditionalOptions=\"/noentry\"" );\r
-\r
-                       if (module.importLibrary != NULL)\r
-                               fprintf ( OUT, "\t\t\t\tModuleDefinitionFile=\"%s\"\r\n", module.importLibrary->definition.c_str());\r
-                       fprintf ( OUT, "\t\t\t\tAdditionalDependencies=\"" );\r
-                       for ( i = 0; i < libraries.size(); i++ )\r
-                       {\r
-                               if ( i > 0 )\r
-                                       fprintf ( OUT, " " );\r
-                               string libpath = libraries[i].c_str();\r
-                               libpath = libpath.erase (0, libpath.find_last_of ("\\") + 1 );\r
-                               fprintf ( OUT, "%s", libpath.c_str() );\r
-                       }\r
-                       fprintf ( OUT, "\"\r\n" );\r
-\r
-                       fprintf ( OUT, "\t\t\t\tAdditionalLibraryDirectories=\"" );\r
-                       for (i = 0; i < libraries.size (); i++)\r
-                       {\r
-                               if ( i > 0 )\r
-                                       fprintf ( OUT, ";" );\r
-\r
-                               string libpath = libraries[i].c_str();\r
-                               libpath.replace (libpath.find("---"), 3, cfg.name);\r
-                               libpath = libpath.substr (0, libpath.find_last_of ("\\") );\r
-                               fprintf ( OUT, "%s", libpath.c_str() );\r
-                       }\r
-                       fprintf ( OUT, "\"\r\n" );\r
-\r
-                       fprintf ( OUT, "\t\t\t\tOutputFile=\"$(OutDir)/%s%s\"\r\n", module.name.c_str(), module_type.c_str() );\r
-                       fprintf ( OUT, "\t\t\t\tLinkIncremental=\"%d\"\r\n", debug ? 2 : 1 );\r
-                       fprintf ( OUT, "\t\t\t\tGenerateDebugInformation=\"%s\"\r\n", speed ? "FALSE" : "TRUE" );\r
-                       fprintf ( OUT, "\t\t\t\tLinkTimeCodeGeneration=\"%d\"\r\n", release? 1: 0);     // whole program optimization\r
-\r
-                       if ( debug )\r
-                               fprintf ( OUT, "\t\t\t\tProgramDatabaseFile=\"$(OutDir)/%s.pdb\"\r\n", module.name.c_str() );\r
-\r
-                       if ( sys )\r
-                       {\r
-                               fprintf ( OUT, "\t\t\t\tAdditionalOptions=\" /ALIGN:0x20 /SECTION:INIT,D /IGNORE:4001,4037,4039,4065,4070,4078,4087,4089,4096\"\r\n" );\r
-                               fprintf ( OUT, "\t\t\t\tIgnoreAllDefaultLibraries=\"TRUE\"\r\n" );\r
-                               fprintf ( OUT, "\t\t\t\tGenerateManifest=\"FALSE\"\r\n" );\r
-                               fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", 3 );\r
-                               fprintf ( OUT, "\t\t\t\tDriver=\"%d\"\r\n", 1 );\r
-                               fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"%s\"\r\n", module.GetEntryPoint(false) == "" ? "DriverEntry" : module.GetEntryPoint(false).c_str ());\r
-                               fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr == "" ? "0x10000" : baseaddr.c_str ());       \r
-                       }\r
-                       else if ( exe )\r
-                       {\r
-                               if ( module.type == Kernel )\r
-                               {\r
-                                       fprintf ( OUT, "\t\t\t\tAdditionalOptions=\" /SECTION:INIT,D /ALIGN:0x80\"\r\n" );\r
-                                       fprintf ( OUT, "\t\t\t\tIgnoreAllDefaultLibraries=\"TRUE\"\r\n" );\r
-                                       fprintf ( OUT, "\t\t\t\tGenerateManifest=\"FALSE\"\r\n" );\r
-                                       fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", 3 );\r
-                                       fprintf ( OUT, "\t\t\t\tDriver=\"%d\"\r\n", 1 );\r
-                                       fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"KiSystemStartup\"\r\n" );\r
-                                       fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr.c_str ());    \r
-                               }\r
-                               else if ( module.type == NativeCUI )\r
-                               {\r
-                                       fprintf ( OUT, "\t\t\t\tAdditionalOptions=\" /ALIGN:0x20\"\r\n" );\r
-                                       fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", 1 );\r
-                                       fprintf ( OUT, "\t\t\t\tGenerateManifest=\"FALSE\"\r\n" );\r
-                                       fprintf ( OUT, "\t\t\t\tIgnoreAllDefaultLibraries=\"TRUE\"\r\n" );\r
-                                       fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"NtProcessStartup\"\r\n" );\r
-                                       fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr.c_str ());    \r
-                               }\r
-                               else if ( module.type == Win32CUI || module.type == Win32GUI || module.type == Win32SCR)\r
-                               {\r
-                                       fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", console ? 1 : 2 );\r
-                               }\r
-                       }\r
-                       else if ( dll )\r
-                       {\r
-                               if (module.GetEntryPoint(false) == "0")\r
-                                       fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"\"\r\n" );\r
-                               else\r
-                               {       \r
-                                       // get rid of DllMain@12 because MSVC needs to link to _DllMainCRTStartup@12\r
-                                       // when using CRT\r
-                                       if (module.GetEntryPoint(false) == "DllMain@12") \r
-                                               fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"\"\r\n" );\r
-                                       else\r
-                                               fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"%s\"\r\n", module.GetEntryPoint(false).c_str ());\r
-                               }\r
-                               fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr == "" ? "0x40000" : baseaddr.c_str ());\r
-                       }\r
-                       fprintf ( OUT, "\t\t\t\tTargetMachine=\"%d\"/>\r\n", 1 );\r
-               }\r
-               \r
-               fprintf ( OUT, "\t\t\t<Tool\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tName=\"VCResourceCompilerTool\"\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tAdditionalIncludeDirectories=\"" );\r
-               multiple_includes = false;\r
-               fprintf ( OUT, "./;" );\r
-               for ( i = 0; i < includes.size(); i++ )\r
-               {\r
-                       const std::string& include = includes[i];\r
-                       if ( strcmp ( include.c_str(), "." ) )\r
-                       {\r
-                               if ( multiple_includes )\r
-                                       fprintf ( OUT, ";" );\r
-                               fprintf ( OUT, "%s", include.c_str() );\r
-                               multiple_includes = true;\r
-                       }\r
-               }\r
-               if ( cfg.headers == WineHeaders )\r
-               {\r
-                       for ( i = 0; i < includes_wine.size(); i++ )\r
-                       {\r
-                               const std::string& include = includes_wine[i];\r
-                               if ( multiple_includes )\r
-                                       fprintf ( OUT, ";" );\r
-                               fprintf ( OUT, "%s", include.c_str() );\r
-                               multiple_includes = true;\r
-                       }\r
-               }\r
-               fprintf ( OUT, "\"/>\r\n " );\r
-\r
-               fprintf ( OUT, "\t\t\t<Tool\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tName=\"VCMIDLTool\"/>\r\n" );\r
-               fprintf ( OUT, "\t\t\t<Tool\r\n" );\r
-               if (configuration.VSProjectVersion == "8.00")\r
-               {\r
-                       fprintf ( OUT, "\t\t\t\tName=\"VCManifestTool\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tEmbedManifest=\"false\"/>\r\n" );\r
-               }\r
-               fprintf ( OUT, "\t\t\t<Tool\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tName=\"VCPostBuildEventTool\"/>\r\n" );\r
-               fprintf ( OUT, "\t\t\t<Tool\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tName=\"VCPreBuildEventTool\"/>\r\n" );\r
-               fprintf ( OUT, "\t\t\t<Tool\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tName=\"VCPreLinkEventTool\"/>\r\n" );\r
-               fprintf ( OUT, "\t\t\t<Tool\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"/>\r\n" );\r
-               fprintf ( OUT, "\t\t\t<Tool\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tName=\"VCWebDeploymentTool\"/>\r\n" );\r
-               fprintf ( OUT, "\t\t</Configuration>\r\n" );\r
-\r
-               n++;\r
-       }\r
-       fprintf ( OUT, "\t</Configurations>\r\n" );\r
-\r
-       fprintf ( OUT, "\t<Files>\r\n" );\r
-\r
-       // Source files\r
-       fprintf ( OUT, "\t\t<Filter\r\n" );\r
-       fprintf ( OUT, "\t\t\tName=\"Source Files\"\r\n" );\r
-       fprintf ( OUT, "\t\t\tFilter=\"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;S\">\r\n" );\r
-       for ( size_t isrcfile = 0; isrcfile < source_files.size(); isrcfile++ )\r
-       {\r
-               string source_file = DosSeparator(source_files[isrcfile]);\r
-               fprintf ( OUT, "\t\t\t<File\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tRelativePath=\"%s\">\r\n", source_file.c_str() );\r
-\r
-               for ( size_t iconfig = 0; iconfig < m_configurations.size(); iconfig++ )\r
-               {\r
-                       const MSVCConfiguration& config = *m_configurations[iconfig];\r
-\r
-                       if (( isrcfile == 0 ) && ( module.pch != NULL ))\r
-                       {\r
-                               /* little hack to speed up PCH */\r
-                               fprintf ( OUT, "\t\t\t\t<FileConfiguration\r\n" );\r
-                               fprintf ( OUT, "\t\t\t\t\tName=\"" );\r
-                               fprintf ( OUT, config.name.c_str() );\r
-                               fprintf ( OUT, "|Win32\">\r\n" );\r
-                               fprintf ( OUT, "\t\t\t\t\t<Tool\r\n" );\r
-                               fprintf ( OUT, "\t\t\t\t\t\tName=\"VCCLCompilerTool\"\r\n" );\r
-                               fprintf ( OUT, "\t\t\t\t\t\tUsePrecompiledHeader=\"1\"/>\r\n" );\r
-                               fprintf ( OUT, "\t\t\t\t</FileConfiguration>\r\n" );\r
-                       }\r
-\r
-                       //if (configuration.VSProjectVersion < "8.00") {\r
-                               if ((source_file.find(".idl") != string::npos) || ((source_file.find(".asm") != string::npos || tolower(source_file.at(source_file.size() - 1)) == 's')))\r
-                               {\r
-                                       fprintf ( OUT, "\t\t\t\t<FileConfiguration\r\n" );\r
-                                       fprintf ( OUT, "\t\t\t\t\tName=\"" );\r
-                                       fprintf ( OUT, config.name.c_str() );\r
-                                       fprintf ( OUT, "|Win32\">\r\n" );\r
-                                       fprintf ( OUT, "\t\t\t\t\t<Tool\r\n" );\r
-                                       if (source_file.find(".idl") != string::npos)\r
-                                       {\r
-                                               string src = source_file.substr (0, source_file.find(".idl"));\r
-\r
-                                               if ( src.find (".\\") != string::npos )\r
-                                                       src.erase (0, 2);\r
-\r
-                                               fprintf ( OUT, "\t\t\t\t\t\tName=\"VCCustomBuildTool\"\r\n" );\r
-\r
-                                               if ( module.type == RpcClient )\r
-                                                       fprintf ( OUT, "\t\t\t\t\t\tCommandLine=\"midl.exe /cstub %s.c /header %s.h &quot;$(InputPath)&quot; /out &quot;$(IntDir)&quot;", src.c_str (), src.c_str () );\r
-                                               else\r
-                                                       fprintf ( OUT, "\t\t\t\t\t\tCommandLine=\"midl.exe /sstub %s.c /header %s.h &quot;$(InputPath)&quot; /out &quot;$(IntDir)&quot;", src.c_str (), src.c_str () );\r
-\r
-                                               fprintf ( OUT, "&#x0D;&#x0A;");\r
-                                               fprintf ( OUT, "cl.exe /Od /D &quot;WIN32&quot; /D &quot;_DEBUG&quot; /D &quot;_WINDOWS&quot; /D &quot;_WIN32_WINNT=0x502&quot; /D &quot;_UNICODE&quot; /D &quot;UNICODE&quot; /Gm /EHsc /RTC1 /MDd /Fo&quot;$(IntDir)\\%s.obj&quot; /W3 /c /Wp64 /ZI /TC &quot;$(IntDir)\\%s.c&quot; /nologo /errorReport:prompt", src.c_str (), src.c_str () ); \r
-                                               fprintf ( OUT, "&#x0D;&#x0A;");\r
-                                               fprintf ( OUT, "lib.exe /OUT:&quot;$(OutDir)\\%s.lib&quot; &quot;$(IntDir)\\%s.obj&quot;&#x0D;&#x0A;\"\r\n", module.name.c_str (), src.c_str () );\r
-                                               fprintf ( OUT, "\t\t\t\t\t\tOutputs=\"$(IntDir)\\$(InputName).obj\"/>\r\n" );\r
-                                       }\r
-                                       else if ((source_file.find(".asm") != string::npos || tolower(source_file.at(source_file.size() - 1)) == 's'))\r
-                                       {\r
-                                               fprintf ( OUT, "\t\t\t\t\t\tName=\"VCCustomBuildTool\"\r\n" );\r
-                                               fprintf ( OUT, "\t\t\t\t\t\tCommandLine=\"nasmw $(InputPath) -f coff -o &quot;$(OutDir)\\$(InputName).obj&quot;\"\r\n");\r
-                                               fprintf ( OUT, "\t\t\t\t\t\tOutputs=\"$(OutDir)\\$(InputName).obj\"/>\r\n" );\r
-                                       }\r
-                                       fprintf ( OUT, "\t\t\t\t</FileConfiguration>\r\n" );\r
-                               }\r
-                       //}\r
-               }\r
-               fprintf ( OUT, "\t\t\t</File>\r\n" );\r
-       }\r
-       fprintf ( OUT, "\t\t</Filter>\r\n" );\r
-\r
-       // Header files\r
-       fprintf ( OUT, "\t\t<Filter\r\n" );\r
-       fprintf ( OUT, "\t\t\tName=\"Header Files\"\r\n" );\r
-       fprintf ( OUT, "\t\t\tFilter=\"h;hpp;hxx;hm;inl\">\r\n" );\r
-       for ( i = 0; i < header_files.size(); i++ )\r
-       {\r
-               const string& header_file = header_files[i];\r
-               fprintf ( OUT, "\t\t\t<File\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tRelativePath=\"%s\">\r\n", header_file.c_str() );\r
-               fprintf ( OUT, "\t\t\t</File>\r\n" );\r
-       }\r
-       fprintf ( OUT, "\t\t</Filter>\r\n" );\r
-\r
-       // Resource files\r
-       fprintf ( OUT, "\t\t<Filter\r\n" );\r
-       fprintf ( OUT, "\t\t\tName=\"Resource Files\"\r\n" );\r
-       fprintf ( OUT, "\t\t\tFilter=\"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\">\r\n" );\r
-       for ( i = 0; i < resource_files.size(); i++ )\r
-       {\r
-               const string& resource_file = resource_files[i];\r
-               fprintf ( OUT, "\t\t\t<File\r\n" );\r
-               fprintf ( OUT, "\t\t\t\tRelativePath=\"%s\">\r\n", resource_file.c_str() );\r
-               fprintf ( OUT, "\t\t\t</File>\r\n" );\r
-       }\r
-       fprintf ( OUT, "\t\t</Filter>\r\n" );\r
-\r
-       fprintf ( OUT, "\t</Files>\r\n" );\r
-       fprintf ( OUT, "\t<Globals>\r\n" );\r
-       fprintf ( OUT, "\t</Globals>\r\n" );\r
-       fprintf ( OUT, "</VisualStudioProject>\r\n" );\r
-       fclose ( OUT );\r
-\r
-       /* User configuration file */\r
-       if (vcproj_file_user != "")\r
-       {\r
-               OUT = fopen ( vcproj_file_user.c_str(), "wb" );\r
-               fprintf ( OUT, "<?xml version=\"1.0\" encoding = \"Windows-1252\"?>\r\n" );\r
-               fprintf ( OUT, "<VisualStudioUserFile\r\n" );\r
-               fprintf ( OUT, "\tProjectType=\"Visual C++\"\r\n" );\r
-               fprintf ( OUT, "\tVersion=\"%s\"\r\n", configuration.VSProjectVersion.c_str() );\r
-               fprintf ( OUT, "\tShowAllFiles=\"false\"\r\n" );\r
-               fprintf ( OUT, "\t>\r\n" );\r
-\r
-               fprintf ( OUT, "\t<Configurations>\r\n" );\r
-               for ( size_t icfg = 0; icfg < m_configurations.size(); icfg++ )\r
-               {\r
-                       const MSVCConfiguration& cfg = *m_configurations[icfg];\r
-                       fprintf ( OUT, "\t\t<Configuration\r\n" );\r
-                       fprintf ( OUT, "\t\t\tName=\"%s|Win32\"\r\n", cfg.name.c_str() );\r
-                       fprintf ( OUT, "\t\t\t>\r\n" );\r
-                       fprintf ( OUT, "\t\t\t<DebugSettings\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tCommand=\"rundll32.exe\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tCommandArguments=\" shell32,Control_RunDLL &quot;$(TargetPath)&quot;,@\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tAttach=\"false\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tDebuggerType=\"3\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tRemote=\"1\"\r\n" );\r
-                       string remote_machine = "\t\t\t\tRemoteMachine=\"" + computername + "\"\r\n";\r
-                       fprintf ( OUT, remote_machine.c_str() );\r
-                       fprintf ( OUT, "\t\t\t\tRemoteCommand=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tHttpUrl=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tPDBPath=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tSQLDebugging=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tEnvironment=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tEnvironmentMerge=\"true\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tDebuggerFlavor=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tMPIRunCommand=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tMPIRunArguments=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tMPIRunWorkingDirectory=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tApplicationCommand=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tApplicationArguments=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tShimCommand=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tMPIAcceptMode=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t\tMPIAcceptFilter=\"\"\r\n" );\r
-                       fprintf ( OUT, "\t\t\t/>\r\n" );\r
-                       fprintf ( OUT, "\t\t</Configuration>\r\n" );\r
-               }\r
-               fprintf ( OUT, "\t</Configurations>\r\n" );\r
-               fprintf ( OUT, "</VisualStudioUserFile>\r\n" );\r
-               fclose ( OUT );\r
-       }\r
-\r
-}\r
-\r
-std::string\r
-MSVCBackend::_replace_str(std::string string1, const std::string &find_str, const std::string &replace_str)\r
-{\r
-       std::string::size_type pos = string1.find(find_str, 0);\r
-       int intLen = find_str.length();\r
-\r
-       while(std::string::npos != pos)\r
-       {\r
-               string1.replace(pos, intLen, replace_str);\r
-               pos = string1.find(find_str, intLen + pos);\r
-       }\r
-\r
-       return string1;\r
-}\r
-\r
-std::string\r
-MSVCBackend::_get_solution_verion ( void )\r
-{\r
-       string version;\r
-\r
-       if (configuration.VSProjectVersion.empty())\r
-               configuration.VSProjectVersion = MS_VS_DEF_VERSION;\r
-\r
-       if (configuration.VSProjectVersion == "7.00")\r
-               version = "7.00";\r
-\r
-       if (configuration.VSProjectVersion == "7.10")\r
-               version = "8.00";\r
-\r
-       if (configuration.VSProjectVersion == "8.00")\r
-               version = "9.00";\r
-\r
-       return version;\r
-}\r
-\r
-void\r
-MSVCBackend::_generate_sln_header ( FILE* OUT )\r
-{\r
-       fprintf ( OUT, "Microsoft Visual Studio Solution File, Format Version %s\r\n", _get_solution_verion().c_str() );\r
-       fprintf ( OUT, "# Visual Studio 2005\r\n" );\r
-       fprintf ( OUT, "\r\n" );\r
-}\r
-\r
-\r
-void\r
-MSVCBackend::_generate_sln_project (\r
-       FILE* OUT,\r
-       const Module& module,\r
-       std::string vcproj_file,\r
-       std::string sln_guid,\r
-       std::string vcproj_guid,\r
-       const std::vector<Library*>& libraries )\r
-{\r
-       vcproj_file = DosSeparator ( std::string(".\\") + vcproj_file );\r
-\r
-       fprintf ( OUT, "Project(\"%s\") = \"%s\", \"%s\", \"%s\"\r\n", sln_guid.c_str() , module.name.c_str(), vcproj_file.c_str(), vcproj_guid.c_str() );\r
-\r
-       //FIXME: only omit ProjectDependencies in VS 2005 when there are no dependencies\r
-       //NOTE: VS 2002 do not use ProjectSection; it uses GlobalSection instead\r
-       if ((configuration.VSProjectVersion == "7.10") || (libraries.size() > 0)) {\r
-               fprintf ( OUT, "\tProjectSection(ProjectDependencies) = postProject\r\n" );\r
-               for ( size_t i = 0; i < libraries.size(); i++ )\r
-               {\r
-                       const Module& module = *libraries[i]->importedModule;\r
-                       fprintf ( OUT, "\t\t%s = %s\r\n", module.guid.c_str(), module.guid.c_str() );\r
-               }\r
-               fprintf ( OUT, "\tEndProjectSection\r\n" );\r
-       }\r
-\r
-       fprintf ( OUT, "EndProject\r\n" );\r
-}\r
-\r
-\r
-void\r
-MSVCBackend::_generate_sln_footer ( FILE* OUT )\r
-{\r
-       fprintf ( OUT, "Global\r\n" );\r
-       fprintf ( OUT, "\tGlobalSection(SolutionConfiguration) = preSolution\r\n" );\r
-       for ( size_t i = 0; i < m_configurations.size(); i++ )\r
-               fprintf ( OUT, "\t\t%s = %s\r\n", m_configurations[i]->name.c_str(), m_configurations[i]->name.c_str() );\r
-       fprintf ( OUT, "\tEndGlobalSection\r\n" );\r
-       fprintf ( OUT, "\tGlobalSection(ProjectConfiguration) = postSolution\r\n" );\r
-       for ( size_t i = 0; i < ProjectNode.modules.size(); i++ )\r
-       {\r
-               Module& module = *ProjectNode.modules[i];\r
-               std::string guid = module.guid;\r
-               _generate_sln_configurations ( OUT, guid.c_str() );\r
-       } \r
-       fprintf ( OUT, "\tEndGlobalSection\r\n" );\r
-       fprintf ( OUT, "\tGlobalSection(ExtensibilityGlobals) = postSolution\r\n" );\r
-       fprintf ( OUT, "\tEndGlobalSection\r\n" );\r
-       fprintf ( OUT, "\tGlobalSection(ExtensibilityAddIns) = postSolution\r\n" );\r
-       fprintf ( OUT, "\tEndGlobalSection\r\n" );\r
-       \r
-       if (configuration.VSProjectVersion == "7.00") {\r
-               fprintf ( OUT, "\tGlobalSection(ProjectDependencies) = postSolution\r\n" );\r
-               //FIXME: Add dependencies for VS 2002\r
-               fprintf ( OUT, "\tEndGlobalSection\r\n" );\r
-       }\r
-\r
-       if (configuration.VSProjectVersion == "8.00") {\r
-               fprintf ( OUT, "\tGlobalSection(SolutionProperties) = preSolution\r\n" );\r
-               fprintf ( OUT, "\t\tHideSolutionNode = FALSE\r\n" );\r
-               fprintf ( OUT, "\tEndGlobalSection\r\n" );\r
-       }\r
-\r
-       fprintf ( OUT, "EndGlobal\r\n" );\r
-       fprintf ( OUT, "\r\n" );\r
-}\r
-\r
-\r
-void\r
-MSVCBackend::_generate_sln_configurations ( FILE* OUT, std::string vcproj_guid )\r
-{\r
-       for ( size_t i = 0; i < m_configurations.size (); i++)\r
-       {\r
-               const MSVCConfiguration& cfg = *m_configurations[i];\r
-               fprintf ( OUT, "\t\t%s.%s|Win32.ActiveCfg = %s|Win32\r\n", vcproj_guid.c_str(), cfg.name.c_str(), cfg.name.c_str() );\r
-               fprintf ( OUT, "\t\t%s.%s|Win32.Build.0 = %s|Win32\r\n", vcproj_guid.c_str(), cfg.name.c_str(), cfg.name.c_str() );\r
-       }\r
-}\r
-\r
-void\r
-MSVCBackend::_generate_sln ( FILE* OUT )\r
-{\r
-       string sln_guid = "{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}";\r
-       vector<string> guids;\r
-\r
-       _generate_sln_header(OUT);\r
-       // TODO FIXME - is it necessary to sort them?\r
-       for ( size_t i = 0; i < ProjectNode.modules.size(); i++ )\r
-       {\r
-               Module& module = *ProjectNode.modules[i];\r
-               \r
-               std::string vcproj_file = VcprojFileName ( module );\r
-               _generate_sln_project ( OUT, module, vcproj_file, sln_guid, module.guid, module.non_if_data.libraries );\r
-       }\r
-       _generate_sln_footer ( OUT );\r
-}\r
-\r
-const Property* \r
-MSVCBackend::_lookup_property ( const Module& module, const std::string& name ) const\r
-{\r
-       /* Check local values */\r
-       for ( size_t i = 0; i < module.non_if_data.properties.size(); i++ )\r
-       {\r
-               const Property& property = *module.non_if_data.properties[i];\r
-               if ( property.name == name )\r
-                       return &property;\r
-       }\r
-       // TODO FIXME - should we check local if-ed properties?\r
-       for ( size_t i = 0; i < module.project.non_if_data.properties.size(); i++ )\r
-       {\r
-               const Property& property = *module.project.non_if_data.properties[i];\r
-               if ( property.name == name )\r
-                       return &property;\r
-       }\r
-       // TODO FIXME - should we check global if-ed properties?\r
-       return NULL;\r
-}\r
+/*
+ * Copyright (C) 2002 Patrik Stridvall
+ * Copyright (C) 2005 Royce Mitchell III
+ * Copyright (C) 2006 HervĂ© Poussineau
+ * Copyright (C) 2006 Christoph von Wittich
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#ifdef _MSC_VER
+#pragma warning ( disable : 4786 )
+#endif//_MSC_VER
+
+#include <string>
+#include <vector>
+#include <set>
+
+#include <stdio.h>
+
+#include "msvc.h"
+
+using std::string;
+using std::vector;
+using std::set;
+
+typedef set<string> StringSet;
+
+#ifdef OUT
+#undef OUT
+#endif//OUT
+
+MSVCConfiguration::MSVCConfiguration ( const OptimizationType optimization, const HeadersType headers, const std::string &name )
+{
+       this->optimization = optimization;
+       this->headers = headers;
+       if ( name != "" )
+               this->name = name;
+       else
+       {
+               std::string headers_name;
+               if ( headers == MSVCHeaders )
+                       headers_name = "";
+               else
+                       headers_name = " - Wine headers";
+               if ( optimization == Debug )
+                       this->name = "Debug" + headers_name;
+               else if ( optimization == Release )
+                       this->name = "Release" + headers_name;
+               else if ( optimization == Speed )
+                       this->name = "Speed" + headers_name;
+               else
+                       this->name = "Unknown" + headers_name;
+       }
+}
+
+void
+MSVCBackend::_generate_vcproj ( const Module& module )
+{
+       size_t i;
+
+       string vcproj_file = VcprojFileName(module);
+
+       string username = getenv ( "USERNAME" );
+       string computername = getenv ( "COMPUTERNAME" );
+       string vcproj_file_user = "";
+
+       if ((computername != "") && (username != ""))
+               vcproj_file_user = vcproj_file + "." + computername + "." + username + ".user";
+
+       printf ( "Creating MSVC.NET project: '%s'\n", vcproj_file.c_str() );
+       FILE* OUT = fopen ( vcproj_file.c_str(), "wb" );
+
+       vector<string> imports;
+       string module_type = GetExtension(module.GetTargetName());
+       bool lib = (module.type == ObjectLibrary) || (module.type == RpcClient) ||(module.type == RpcServer) || (module_type == ".lib") || (module_type == ".a");
+       bool dll = (module_type == ".dll") || (module_type == ".cpl");
+       bool exe = (module_type == ".exe") || (module_type == ".scr");
+       bool sys = (module_type == ".sys");
+
+       string path_basedir = module.GetPathToBaseDir ();
+       string intenv = Environment::GetIntermediatePath ();
+       string outenv = Environment::GetOutputPath ();
+       string outdir;
+       string intdir;
+       string vcdir;
+
+
+       if ( intenv == "obj-i386" )
+               intdir = path_basedir + "obj-i386"; /* append relative dir from project dir */
+       else
+               intdir = intenv;
+
+       if ( outenv == "output-i386" )
+               outdir = path_basedir + "output-i386";
+       else
+               outdir = outenv;
+
+       if ( configuration.UseVSVersionInPath )
+       {
+               vcdir = "\\" + _get_vc_dir();
+       }
+       // TODO FIXME - need more checks here for 'sys' and possibly 'drv'?
+
+       bool console = exe && (module.type == Win32CUI);
+
+       string vcproj_path = module.GetBasePath();
+       vector<string> source_files, resource_files, includes, includes_wine, libraries;
+       StringSet common_defines;
+       vector<const IfableData*> ifs_list;
+       ifs_list.push_back ( &module.project.non_if_data );
+       ifs_list.push_back ( &module.non_if_data );
+
+       string baseaddr;
+
+       while ( ifs_list.size() )
+       {
+               const IfableData& data = *ifs_list.back();
+               ifs_list.pop_back();
+               for ( i = 0; i < data.ifs.size(); i++ )
+               {
+                       const Property* property = _lookup_property( module, data.ifs[i]->property );
+                       if ( property != NULL )
+                       {
+                               if ( data.ifs[i]->value == property->value || data.ifs[i]->negated )
+                                       ifs_list.push_back ( &data.ifs[i]->data );
+                       }
+               }
+               const vector<File*>& files = data.files;
+               for ( i = 0; i < files.size(); i++ )
+               {
+                       // TODO FIXME - do we want the full path of the file here?
+                       string file = string(".") + &files[i]->name[vcproj_path.size()];
+
+                       if ( !stricmp ( Right(file,3).c_str(), ".rc" ) )
+                               resource_files.push_back ( file );
+                       else
+                               source_files.push_back ( file );
+               }
+               const vector<Include*>& incs = data.includes;
+               for ( i = 0; i < incs.size(); i++ )
+               {
+                       string path = Path::RelativeFromDirectory (
+                               incs[i]->directory,
+                               module.GetBasePath() );
+
+                       // add to another list win32api and include/wine directories
+                       if ( !strncmp(incs[i]->directory.c_str(), "include\\ddk", 11 ) ||
+                            !strncmp(incs[i]->directory.c_str(), "include\\crt", 11 ) ||
+                            !strncmp(incs[i]->directory.c_str(), "include\\GL", 10 ) ||
+                                !strncmp(incs[i]->directory.c_str(), "include\\ddk", 11 ) ||
+                                !strncmp(incs[i]->directory.c_str(), "include\\psdk", 12 ) ||
+                            !strncmp(incs[i]->directory.c_str(), "include\\reactos\\wine", 20 ) )
+                       {
+                               includes_wine.push_back ( path );
+                       }
+                       else
+                       {
+                               includes.push_back ( path );
+                       }
+               }
+               const vector<Library*>& libs = data.libraries;
+               for ( i = 0; i < libs.size(); i++ )
+               {
+                       string libpath = outdir + "\\" + libs[i]->importedModule->GetBasePath() + "\\" + _get_vc_dir() + "\\---\\" + libs[i]->name + ".lib";
+                       libraries.push_back ( libpath );
+               }
+               const vector<Define*>& defs = data.defines;
+               for ( i = 0; i < defs.size(); i++ )
+               {
+                       if ( defs[i]->value[0] )
+                               common_defines.insert( defs[i]->name + "=" + defs[i]->value );
+                       else
+                               common_defines.insert( defs[i]->name );
+               }
+               for ( i = 0; i < data.properties.size(); i++ )
+               {
+                       Property& prop = *data.properties[i];
+                       if ( strstr ( module.baseaddress.c_str(), prop.name.c_str() ) )
+                               baseaddr = prop.value;
+               }
+       }
+
+       vector<string> header_files;
+
+       string include_string;
+
+       fprintf ( OUT, "<?xml version=\"1.0\" encoding = \"Windows-1252\"?>\r\n" );
+       fprintf ( OUT, "<VisualStudioProject\r\n" );
+       fprintf ( OUT, "\tProjectType=\"Visual C++\"\r\n" );
+
+       if (configuration.VSProjectVersion.empty())
+               configuration.VSProjectVersion = MS_VS_DEF_VERSION;
+
+       fprintf ( OUT, "\tVersion=\"%s\"\r\n", configuration.VSProjectVersion.c_str() );
+       fprintf ( OUT, "\tName=\"%s\"\r\n", module.name.c_str() );
+       fprintf ( OUT, "\tProjectGUID=\"%s\"\r\n", module.guid.c_str() ); 
+       fprintf ( OUT, "\tKeyword=\"Win32Proj\">\r\n" );
+
+       fprintf ( OUT, "\t<Platforms>\r\n" );
+       fprintf ( OUT, "\t\t<Platform\r\n" );
+       fprintf ( OUT, "\t\t\tName=\"Win32\"/>\r\n" );
+       fprintf ( OUT, "\t</Platforms>\r\n" );
+
+       //fprintf ( OUT, "\t<ToolFiles>\r\n" );
+       //fprintf ( OUT, "\t\t<ToolFile\r\n" );
+
+       //string path = Path::RelativeFromDirectory ( ProjectNode.name, module.GetBasePath() );
+       //path.erase(path.find(ProjectNode.name, 0), ProjectNode.name.size() + 1);
+
+       //fprintf ( OUT, "\t\t\tRelativePath=\"%sgccasm.rules\"/>\r\n", path.c_str() );
+       //fprintf ( OUT, "\t</ToolFiles>\r\n" );
+
+       int n = 0;
+
+       std::string output_dir;
+
+       fprintf ( OUT, "\t<Configurations>\r\n" );
+       for ( size_t icfg = 0; icfg < m_configurations.size(); icfg++ )
+       {
+               const MSVCConfiguration& cfg = *m_configurations[icfg];
+
+               bool debug = ( cfg.optimization == Debug );
+               bool release = ( cfg.optimization == Release );
+               bool speed = ( cfg.optimization == Speed );
+
+               fprintf ( OUT, "\t\t<Configuration\r\n" );
+               fprintf ( OUT, "\t\t\tName=\"%s|Win32\"\r\n", cfg.name.c_str() );
+
+               if ( configuration.UseVSConfigurationInPath )
+               {
+                       fprintf ( OUT, "\t\t\tOutputDirectory=\"%s\\%s%s\\%s\"\r\n", outdir.c_str (), module.GetBasePath ().c_str (), vcdir.c_str (), cfg.name.c_str() );
+                       fprintf ( OUT, "\t\t\tIntermediateDirectory=\"%s\\%s%s\\%s\"\r\n", intdir.c_str (), module.GetBasePath ().c_str (), vcdir.c_str (), cfg.name.c_str() );
+               }
+               else
+               {
+                       fprintf ( OUT, "\t\t\tOutputDirectory=\"%s\\%s%s\"\r\n", outdir.c_str (), module.GetBasePath ().c_str (), vcdir.c_str () );
+                       fprintf ( OUT, "\t\t\tIntermediateDirectory=\"%s\\%s%s\"\r\n", intdir.c_str (), module.GetBasePath ().c_str (), vcdir.c_str () );
+               }
+
+               fprintf ( OUT, "\t\t\tConfigurationType=\"%d\"\r\n", exe ? 1 : dll ? 2 : lib ? 4 : -1 );
+               fprintf ( OUT, "\t\t\tCharacterSet=\"2\">\r\n" );
+
+               fprintf ( OUT, "\t\t\t<Tool\r\n" );
+               fprintf ( OUT, "\t\t\t\tName=\"VCCLCompilerTool\"\r\n" );
+               fprintf ( OUT, "\t\t\t\tForcedIncludeFiles=\"warning.h\"\r\n" );
+               fprintf ( OUT, "\t\t\t\tOptimization=\"%d\"\r\n", release ? 2 : 0 );
+
+               fprintf ( OUT, "\t\t\t\tAdditionalIncludeDirectories=\"" );
+               bool multiple_includes = false;
+               fprintf ( OUT, "./;" );
+               for ( i = 0; i < includes.size(); i++ )
+               {
+                       const std::string& include = includes[i];
+                       if ( strcmp ( include.c_str(), "." ) )
+                       {
+                               if ( multiple_includes )
+                                       fprintf ( OUT, ";" );
+                               fprintf ( OUT, "%s", include.c_str() );
+                               include_string += " /I " + include;
+                               multiple_includes = true;
+                       }
+               }
+               if ( cfg.headers == WineHeaders )
+               {
+                       for ( i = 0; i < includes_wine.size(); i++ )
+                       {
+                               const std::string& include = includes_wine[i];
+                               if ( multiple_includes )
+                                       fprintf ( OUT, ";" );
+                               fprintf ( OUT, "%s", include.c_str() );
+                               //include_string += " /I " + include;
+                               multiple_includes = true;
+                       }
+               }
+               fprintf ( OUT, "\"\r\n" );
+
+               StringSet defines = common_defines;
+
+               if ( debug )
+               {
+                       defines.insert ( "_DEBUG" );
+               }
+               else
+               {
+                       defines.insert ( "NDEBUG" );
+               }
+
+               if ( cfg.headers == MSVCHeaders )
+               {
+                       // this is a define in MinGW w32api, but not Microsoft's headers
+                       defines.insert ( "STDCALL=__stdcall" );
+               }
+
+               if ( lib || exe )
+               {
+                       defines.insert ( "_LIB" );
+               }
+               else
+               {
+                       defines.insert ( "_WINDOWS" );
+                       defines.insert ( "_USRDLL" );
+               }
+
+               fprintf ( OUT, "\t\t\t\tPreprocessorDefinitions=\"" );
+               for ( StringSet::iterator it1=defines.begin(); it1!=defines.end(); it1++ )
+               {
+                       if ( i > 0 )
+                               fprintf ( OUT, ";" );
+
+                       string unescaped = *it1;
+                       defines.erase(unescaped);
+                       const string& escaped = _replace_str(unescaped, "\"","&quot;");
+
+                       defines.insert(escaped);
+                       fprintf ( OUT, "%s", escaped.c_str() );
+               }
+               fprintf ( OUT, "\"\r\n" );
+
+               fprintf ( OUT, "\t\t\t\tMinimalRebuild=\"%s\"\r\n", speed ? "FALSE" : "TRUE" );
+               fprintf ( OUT, "\t\t\t\tBasicRuntimeChecks=\"%s\"\r\n", sys ? 0 : (debug ? "3" : "0") );
+               fprintf ( OUT, "\t\t\t\tRuntimeLibrary=\"%d\"\r\n", debug ? 1 : 5 );    // 1=/MTd 5=/MT
+               fprintf ( OUT, "\t\t\t\tBufferSecurityCheck=\"%s\"\r\n", sys ? "FALSE" : (debug ? "TRUE" : "FALSE" ));
+               fprintf ( OUT, "\t\t\t\tEnableFunctionLevelLinking=\"%s\"\r\n", debug ? "TRUE" : "FALSE" );
+               
+               if ( module.pch != NULL )
+               {
+                       fprintf ( OUT, "\t\t\t\tUsePrecompiledHeader=\"2\"\r\n" );
+                       string pch_path = Path::RelativeFromDirectory (
+                               module.pch->file.name,
+                               module.GetBasePath() );
+                       string::size_type pos = pch_path.find_last_of ("/");
+                       if ( pos != string::npos )
+                               pch_path.erase(0, pos+1);         
+                       fprintf ( OUT, "\t\t\t\tPrecompiledHeaderThrough=\"%s\"\r\n", pch_path.c_str() );
+               }
+               else
+               {
+                       fprintf ( OUT, "\t\t\t\tUsePrecompiledHeader=\"0\"\r\n" );
+               }
+
+               fprintf ( OUT, "\t\t\t\tWholeProgramOptimization=\"%s\"\r\n", release ? "TRUE" : "FALSE");
+               if ( release )
+               {
+                       fprintf ( OUT, "\t\t\t\tFavorSizeOrSpeed=\"1\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tStringPooling=\"true\"\r\n" );
+               }
+
+               fprintf ( OUT, "\t\t\t\tWarningLevel=\"%s\"\r\n", speed ? "0" : "3" );
+               fprintf ( OUT, "\t\t\t\tDetect64BitPortabilityProblems=\"%s\"\r\n", speed ? "FALSE" : "TRUE");
+               if ( !module.cplusplus )
+                       fprintf ( OUT, "\t\t\t\tCompileAs=\"1\"\r\n" );
+               fprintf ( OUT, "\t\t\t\tCallingConvention=\"%d\"\r\n", 2 );     // 2=__stdcall 0=__cdecl
+               fprintf ( OUT, "\t\t\t\tDebugInformationFormat=\"%s\"/>\r\n", speed ? "0" : release ? "3": "4");        // 3=/Zi 4=ZI
+
+               fprintf ( OUT, "\t\t\t<Tool\r\n" );
+               fprintf ( OUT, "\t\t\t\tName=\"VCCustomBuildTool\"/>\r\n" );
+
+               if ( lib )
+               {
+                       fprintf ( OUT, "\t\t\t<Tool\r\n" );
+                       fprintf ( OUT, "\t\t\t\tName=\"VCLibrarianTool\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tOutputFile=\"$(OutDir)/%s.lib\"/>\r\n", module.name.c_str() );
+               }
+               else
+               {
+                       fprintf ( OUT, "\t\t\t<Tool\r\n" );
+                       fprintf ( OUT, "\t\t\t\tName=\"VCLinkerTool\"\r\n" );
+                       if (module.GetEntryPoint(false) == "0")
+                               fprintf ( OUT, "AdditionalOptions=\"/noentry\"" );
+
+                       if (module.importLibrary != NULL)
+                               fprintf ( OUT, "\t\t\t\tModuleDefinitionFile=\"%s\"\r\n", module.importLibrary->definition.c_str());
+                       fprintf ( OUT, "\t\t\t\tAdditionalDependencies=\"" );
+                       for ( i = 0; i < libraries.size(); i++ )
+                       {
+                               if ( i > 0 )
+                                       fprintf ( OUT, " " );
+                               string libpath = libraries[i].c_str();
+                               libpath = libpath.erase (0, libpath.find_last_of ("\\") + 1 );
+                               fprintf ( OUT, "%s", libpath.c_str() );
+                       }
+                       fprintf ( OUT, "\"\r\n" );
+
+                       fprintf ( OUT, "\t\t\t\tAdditionalLibraryDirectories=\"" );
+                       for (i = 0; i < libraries.size (); i++)
+                       {
+                               if ( i > 0 )
+                                       fprintf ( OUT, ";" );
+
+                               string libpath = libraries[i].c_str();
+                               libpath.replace (libpath.find("---"), 3, cfg.name);
+                               libpath = libpath.substr (0, libpath.find_last_of ("\\") );
+                               fprintf ( OUT, "%s", libpath.c_str() );
+                       }
+                       fprintf ( OUT, "\"\r\n" );
+
+                       fprintf ( OUT, "\t\t\t\tOutputFile=\"$(OutDir)/%s%s\"\r\n", module.name.c_str(), module_type.c_str() );
+                       fprintf ( OUT, "\t\t\t\tLinkIncremental=\"%d\"\r\n", debug ? 2 : 1 );
+                       fprintf ( OUT, "\t\t\t\tGenerateDebugInformation=\"%s\"\r\n", speed ? "FALSE" : "TRUE" );
+                       fprintf ( OUT, "\t\t\t\tLinkTimeCodeGeneration=\"%d\"\r\n", release? 1: 0);     // whole program optimization
+
+                       if ( debug )
+                               fprintf ( OUT, "\t\t\t\tProgramDatabaseFile=\"$(OutDir)/%s.pdb\"\r\n", module.name.c_str() );
+
+                       if ( sys )
+                       {
+                               fprintf ( OUT, "\t\t\t\tAdditionalOptions=\" /ALIGN:0x20 /SECTION:INIT,D /IGNORE:4001,4037,4039,4065,4070,4078,4087,4089,4096\"\r\n" );
+                               fprintf ( OUT, "\t\t\t\tIgnoreAllDefaultLibraries=\"TRUE\"\r\n" );
+                               fprintf ( OUT, "\t\t\t\tGenerateManifest=\"FALSE\"\r\n" );
+                               fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", 3 );
+                               fprintf ( OUT, "\t\t\t\tDriver=\"%d\"\r\n", 1 );
+                               fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"%s\"\r\n", module.GetEntryPoint(false) == "" ? "DriverEntry" : module.GetEntryPoint(false).c_str ());
+                               fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr == "" ? "0x10000" : baseaddr.c_str ());       
+                       }
+                       else if ( exe )
+                       {
+                               if ( module.type == Kernel )
+                               {
+                                       fprintf ( OUT, "\t\t\t\tAdditionalOptions=\" /SECTION:INIT,D /ALIGN:0x80\"\r\n" );
+                                       fprintf ( OUT, "\t\t\t\tIgnoreAllDefaultLibraries=\"TRUE\"\r\n" );
+                                       fprintf ( OUT, "\t\t\t\tGenerateManifest=\"FALSE\"\r\n" );
+                                       fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", 3 );
+                                       fprintf ( OUT, "\t\t\t\tDriver=\"%d\"\r\n", 1 );
+                                       fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"KiSystemStartup\"\r\n" );
+                                       fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr.c_str ());    
+                               }
+                               else if ( module.type == NativeCUI )
+                               {
+                                       fprintf ( OUT, "\t\t\t\tAdditionalOptions=\" /ALIGN:0x20\"\r\n" );
+                                       fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", 1 );
+                                       fprintf ( OUT, "\t\t\t\tGenerateManifest=\"FALSE\"\r\n" );
+                                       fprintf ( OUT, "\t\t\t\tIgnoreAllDefaultLibraries=\"TRUE\"\r\n" );
+                                       fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"NtProcessStartup\"\r\n" );
+                                       fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr.c_str ());    
+                               }
+                               else if ( module.type == Win32CUI || module.type == Win32GUI || module.type == Win32SCR)
+                               {
+                                       fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", console ? 1 : 2 );
+                               }
+                       }
+                       else if ( dll )
+                       {
+                               if (module.GetEntryPoint(false) == "0")
+                                       fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"\"\r\n" );
+                               else
+                               {       
+                                       // get rid of DllMain@12 because MSVC needs to link to _DllMainCRTStartup@12
+                                       // when using CRT
+                                       if (module.GetEntryPoint(false) == "DllMain@12") 
+                                               fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"\"\r\n" );
+                                       else
+                                               fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"%s\"\r\n", module.GetEntryPoint(false).c_str ());
+                               }
+                               fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr == "" ? "0x40000" : baseaddr.c_str ());
+                       }
+                       fprintf ( OUT, "\t\t\t\tTargetMachine=\"%d\"/>\r\n", 1 );
+               }
+               
+               fprintf ( OUT, "\t\t\t<Tool\r\n" );
+               fprintf ( OUT, "\t\t\t\tName=\"VCResourceCompilerTool\"\r\n" );
+               fprintf ( OUT, "\t\t\t\tAdditionalIncludeDirectories=\"" );
+               multiple_includes = false;
+               fprintf ( OUT, "./;" );
+               for ( i = 0; i < includes.size(); i++ )
+               {
+                       const std::string& include = includes[i];
+                       if ( strcmp ( include.c_str(), "." ) )
+                       {
+                               if ( multiple_includes )
+                                       fprintf ( OUT, ";" );
+                               fprintf ( OUT, "%s", include.c_str() );
+                               multiple_includes = true;
+                       }
+               }
+               if ( cfg.headers == WineHeaders )
+               {
+                       for ( i = 0; i < includes_wine.size(); i++ )
+                       {
+                               const std::string& include = includes_wine[i];
+                               if ( multiple_includes )
+                                       fprintf ( OUT, ";" );
+                               fprintf ( OUT, "%s", include.c_str() );
+                               multiple_includes = true;
+                       }
+               }
+               fprintf ( OUT, "\"/>\r\n " );
+
+               fprintf ( OUT, "\t\t\t<Tool\r\n" );
+               fprintf ( OUT, "\t\t\t\tName=\"VCMIDLTool\"/>\r\n" );
+               fprintf ( OUT, "\t\t\t<Tool\r\n" );
+               if (configuration.VSProjectVersion == "8.00")
+               {
+                       fprintf ( OUT, "\t\t\t\tName=\"VCManifestTool\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tEmbedManifest=\"false\"/>\r\n" );
+               }
+               fprintf ( OUT, "\t\t\t<Tool\r\n" );
+               fprintf ( OUT, "\t\t\t\tName=\"VCPostBuildEventTool\"/>\r\n" );
+               fprintf ( OUT, "\t\t\t<Tool\r\n" );
+               fprintf ( OUT, "\t\t\t\tName=\"VCPreBuildEventTool\"/>\r\n" );
+               fprintf ( OUT, "\t\t\t<Tool\r\n" );
+               fprintf ( OUT, "\t\t\t\tName=\"VCPreLinkEventTool\"/>\r\n" );
+               fprintf ( OUT, "\t\t\t<Tool\r\n" );
+               fprintf ( OUT, "\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"/>\r\n" );
+               fprintf ( OUT, "\t\t\t<Tool\r\n" );
+               fprintf ( OUT, "\t\t\t\tName=\"VCWebDeploymentTool\"/>\r\n" );
+               fprintf ( OUT, "\t\t</Configuration>\r\n" );
+
+               n++;
+       }
+       fprintf ( OUT, "\t</Configurations>\r\n" );
+
+       fprintf ( OUT, "\t<Files>\r\n" );
+
+       // Source files
+       fprintf ( OUT, "\t\t<Filter\r\n" );
+       fprintf ( OUT, "\t\t\tName=\"Source Files\"\r\n" );
+       fprintf ( OUT, "\t\t\tFilter=\"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;S\">\r\n" );
+       for ( size_t isrcfile = 0; isrcfile < source_files.size(); isrcfile++ )
+       {
+               string source_file = DosSeparator(source_files[isrcfile]);
+               fprintf ( OUT, "\t\t\t<File\r\n" );
+               fprintf ( OUT, "\t\t\t\tRelativePath=\"%s\">\r\n", source_file.c_str() );
+
+               for ( size_t iconfig = 0; iconfig < m_configurations.size(); iconfig++ )
+               {
+                       const MSVCConfiguration& config = *m_configurations[iconfig];
+
+                       if (( isrcfile == 0 ) && ( module.pch != NULL ))
+                       {
+                               /* little hack to speed up PCH */
+                               fprintf ( OUT, "\t\t\t\t<FileConfiguration\r\n" );
+                               fprintf ( OUT, "\t\t\t\t\tName=\"" );
+                               fprintf ( OUT, config.name.c_str() );
+                               fprintf ( OUT, "|Win32\">\r\n" );
+                               fprintf ( OUT, "\t\t\t\t\t<Tool\r\n" );
+                               fprintf ( OUT, "\t\t\t\t\t\tName=\"VCCLCompilerTool\"\r\n" );
+                               fprintf ( OUT, "\t\t\t\t\t\tUsePrecompiledHeader=\"1\"/>\r\n" );
+                               fprintf ( OUT, "\t\t\t\t</FileConfiguration>\r\n" );
+                       }
+
+                       //if (configuration.VSProjectVersion < "8.00") {
+                               if ((source_file.find(".idl") != string::npos) || ((source_file.find(".asm") != string::npos || tolower(source_file.at(source_file.size() - 1)) == 's')))
+                               {
+                                       fprintf ( OUT, "\t\t\t\t<FileConfiguration\r\n" );
+                                       fprintf ( OUT, "\t\t\t\t\tName=\"" );
+                                       fprintf ( OUT, config.name.c_str() );
+                                       fprintf ( OUT, "|Win32\">\r\n" );
+                                       fprintf ( OUT, "\t\t\t\t\t<Tool\r\n" );
+                                       if (source_file.find(".idl") != string::npos)
+                                       {
+                                               string src = source_file.substr (0, source_file.find(".idl"));
+
+                                               if ( src.find (".\\") != string::npos )
+                                                       src.erase (0, 2);
+
+                                               fprintf ( OUT, "\t\t\t\t\t\tName=\"VCCustomBuildTool\"\r\n" );
+
+                                               if ( module.type == RpcClient )
+                                                       fprintf ( OUT, "\t\t\t\t\t\tCommandLine=\"midl.exe /cstub %s.c /header %s.h &quot;$(InputPath)&quot; /out &quot;$(IntDir)&quot;", src.c_str (), src.c_str () );
+                                               else
+                                                       fprintf ( OUT, "\t\t\t\t\t\tCommandLine=\"midl.exe /sstub %s.c /header %s.h &quot;$(InputPath)&quot; /out &quot;$(IntDir)&quot;", src.c_str (), src.c_str () );
+
+                                               fprintf ( OUT, "&#x0D;&#x0A;");
+                                               fprintf ( OUT, "cl.exe /Od /D &quot;WIN32&quot; /D &quot;_DEBUG&quot; /D &quot;_WINDOWS&quot; /D &quot;_WIN32_WINNT=0x502&quot; /D &quot;_UNICODE&quot; /D &quot;UNICODE&quot; /Gm /EHsc /RTC1 /MDd /Fo&quot;$(IntDir)\\%s.obj&quot; /W3 /c /Wp64 /ZI /TC &quot;$(IntDir)\\%s.c&quot; /nologo /errorReport:prompt", src.c_str (), src.c_str () ); 
+                                               fprintf ( OUT, "&#x0D;&#x0A;");
+                                               fprintf ( OUT, "lib.exe /OUT:&quot;$(OutDir)\\%s.lib&quot; &quot;$(IntDir)\\%s.obj&quot;&#x0D;&#x0A;\"\r\n", module.name.c_str (), src.c_str () );
+                                               fprintf ( OUT, "\t\t\t\t\t\tOutputs=\"$(IntDir)\\$(InputName).obj\"/>\r\n" );
+                                       }
+                                       else if ((source_file.find(".asm") != string::npos || tolower(source_file.at(source_file.size() - 1)) == 's'))
+                                       {
+                                               fprintf ( OUT, "\t\t\t\t\t\tName=\"VCCustomBuildTool\"\r\n" );
+                                               fprintf ( OUT, "\t\t\t\t\t\tCommandLine=\"nasmw $(InputPath) -f coff -o &quot;$(OutDir)\\$(InputName).obj&quot;\"\r\n");
+                                               fprintf ( OUT, "\t\t\t\t\t\tOutputs=\"$(OutDir)\\$(InputName).obj\"/>\r\n" );
+                                       }
+                                       fprintf ( OUT, "\t\t\t\t</FileConfiguration>\r\n" );
+                               }
+                       //}
+               }
+               fprintf ( OUT, "\t\t\t</File>\r\n" );
+       }
+       fprintf ( OUT, "\t\t</Filter>\r\n" );
+
+       // Header files
+       fprintf ( OUT, "\t\t<Filter\r\n" );
+       fprintf ( OUT, "\t\t\tName=\"Header Files\"\r\n" );
+       fprintf ( OUT, "\t\t\tFilter=\"h;hpp;hxx;hm;inl\">\r\n" );
+       for ( i = 0; i < header_files.size(); i++ )
+       {
+               const string& header_file = header_files[i];
+               fprintf ( OUT, "\t\t\t<File\r\n" );
+               fprintf ( OUT, "\t\t\t\tRelativePath=\"%s\">\r\n", header_file.c_str() );
+               fprintf ( OUT, "\t\t\t</File>\r\n" );
+       }
+       fprintf ( OUT, "\t\t</Filter>\r\n" );
+
+       // Resource files
+       fprintf ( OUT, "\t\t<Filter\r\n" );
+       fprintf ( OUT, "\t\t\tName=\"Resource Files\"\r\n" );
+       fprintf ( OUT, "\t\t\tFilter=\"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\">\r\n" );
+       for ( i = 0; i < resource_files.size(); i++ )
+       {
+               const string& resource_file = resource_files[i];
+               fprintf ( OUT, "\t\t\t<File\r\n" );
+               fprintf ( OUT, "\t\t\t\tRelativePath=\"%s\">\r\n", resource_file.c_str() );
+               fprintf ( OUT, "\t\t\t</File>\r\n" );
+       }
+       fprintf ( OUT, "\t\t</Filter>\r\n" );
+
+       fprintf ( OUT, "\t</Files>\r\n" );
+       fprintf ( OUT, "\t<Globals>\r\n" );
+       fprintf ( OUT, "\t</Globals>\r\n" );
+       fprintf ( OUT, "</VisualStudioProject>\r\n" );
+       fclose ( OUT );
+
+       /* User configuration file */
+       if (vcproj_file_user != "")
+       {
+               OUT = fopen ( vcproj_file_user.c_str(), "wb" );
+               fprintf ( OUT, "<?xml version=\"1.0\" encoding = \"Windows-1252\"?>\r\n" );
+               fprintf ( OUT, "<VisualStudioUserFile\r\n" );
+               fprintf ( OUT, "\tProjectType=\"Visual C++\"\r\n" );
+               fprintf ( OUT, "\tVersion=\"%s\"\r\n", configuration.VSProjectVersion.c_str() );
+               fprintf ( OUT, "\tShowAllFiles=\"false\"\r\n" );
+               fprintf ( OUT, "\t>\r\n" );
+
+               fprintf ( OUT, "\t<Configurations>\r\n" );
+               for ( size_t icfg = 0; icfg < m_configurations.size(); icfg++ )
+               {
+                       const MSVCConfiguration& cfg = *m_configurations[icfg];
+                       fprintf ( OUT, "\t\t<Configuration\r\n" );
+                       fprintf ( OUT, "\t\t\tName=\"%s|Win32\"\r\n", cfg.name.c_str() );
+                       fprintf ( OUT, "\t\t\t>\r\n" );
+                       fprintf ( OUT, "\t\t\t<DebugSettings\r\n" );
+                       fprintf ( OUT, "\t\t\t\tCommand=\"rundll32.exe\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tCommandArguments=\" shell32,Control_RunDLL &quot;$(TargetPath)&quot;,@\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tAttach=\"false\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tDebuggerType=\"3\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tRemote=\"1\"\r\n" );
+                       string remote_machine = "\t\t\t\tRemoteMachine=\"" + computername + "\"\r\n";
+                       fprintf ( OUT, remote_machine.c_str() );
+                       fprintf ( OUT, "\t\t\t\tRemoteCommand=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tHttpUrl=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tPDBPath=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tSQLDebugging=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tEnvironment=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tEnvironmentMerge=\"true\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tDebuggerFlavor=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tMPIRunCommand=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tMPIRunArguments=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tMPIRunWorkingDirectory=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tApplicationCommand=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tApplicationArguments=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tShimCommand=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tMPIAcceptMode=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t\tMPIAcceptFilter=\"\"\r\n" );
+                       fprintf ( OUT, "\t\t\t/>\r\n" );
+                       fprintf ( OUT, "\t\t</Configuration>\r\n" );
+               }
+               fprintf ( OUT, "\t</Configurations>\r\n" );
+               fprintf ( OUT, "</VisualStudioUserFile>\r\n" );
+               fclose ( OUT );
+       }
+
+}
+
+std::string
+MSVCBackend::_replace_str(std::string string1, const std::string &find_str, const std::string &replace_str)
+{
+       std::string::size_type pos = string1.find(find_str, 0);
+       int intLen = find_str.length();
+
+       while(std::string::npos != pos)
+       {
+               string1.replace(pos, intLen, replace_str);
+               pos = string1.find(find_str, intLen + pos);
+       }
+
+       return string1;
+}
+
+std::string
+MSVCBackend::_get_solution_verion ( void )
+{
+       string version;
+
+       if (configuration.VSProjectVersion.empty())
+               configuration.VSProjectVersion = MS_VS_DEF_VERSION;
+
+       if (configuration.VSProjectVersion == "7.00")
+               version = "7.00";
+
+       if (configuration.VSProjectVersion == "7.10")
+               version = "8.00";
+
+       if (configuration.VSProjectVersion == "8.00")
+               version = "9.00";
+
+       return version;
+}
+
+void
+MSVCBackend::_generate_sln_header ( FILE* OUT )
+{
+       fprintf ( OUT, "Microsoft Visual Studio Solution File, Format Version %s\r\n", _get_solution_verion().c_str() );
+       fprintf ( OUT, "# Visual Studio 2005\r\n" );
+       fprintf ( OUT, "\r\n" );
+}
+
+
+void
+MSVCBackend::_generate_sln_project (
+       FILE* OUT,
+       const Module& module,
+       std::string vcproj_file,
+       std::string sln_guid,
+       std::string vcproj_guid,
+       const std::vector<Library*>& libraries )
+{
+       vcproj_file = DosSeparator ( std::string(".\\") + vcproj_file );
+
+       fprintf ( OUT, "Project(\"%s\") = \"%s\", \"%s\", \"%s\"\r\n", sln_guid.c_str() , module.name.c_str(), vcproj_file.c_str(), vcproj_guid.c_str() );
+
+       //FIXME: only omit ProjectDependencies in VS 2005 when there are no dependencies
+       //NOTE: VS 2002 do not use ProjectSection; it uses GlobalSection instead
+       if ((configuration.VSProjectVersion == "7.10") || (libraries.size() > 0)) {
+               fprintf ( OUT, "\tProjectSection(ProjectDependencies) = postProject\r\n" );
+               for ( size_t i = 0; i < libraries.size(); i++ )
+               {
+                       const Module& module = *libraries[i]->importedModule;
+                       fprintf ( OUT, "\t\t%s = %s\r\n", module.guid.c_str(), module.guid.c_str() );
+               }
+               fprintf ( OUT, "\tEndProjectSection\r\n" );
+       }
+
+       fprintf ( OUT, "EndProject\r\n" );
+}
+
+
+void
+MSVCBackend::_generate_sln_footer ( FILE* OUT )
+{
+       fprintf ( OUT, "Global\r\n" );
+       fprintf ( OUT, "\tGlobalSection(SolutionConfiguration) = preSolution\r\n" );
+       for ( size_t i = 0; i < m_configurations.size(); i++ )
+               fprintf ( OUT, "\t\t%s = %s\r\n", m_configurations[i]->name.c_str(), m_configurations[i]->name.c_str() );
+       fprintf ( OUT, "\tEndGlobalSection\r\n" );
+       fprintf ( OUT, "\tGlobalSection(ProjectConfiguration) = postSolution\r\n" );
+       for ( size_t i = 0; i < ProjectNode.modules.size(); i++ )
+       {
+               Module& module = *ProjectNode.modules[i];
+               std::string guid = module.guid;
+               _generate_sln_configurations ( OUT, guid.c_str() );
+       } 
+       fprintf ( OUT, "\tEndGlobalSection\r\n" );
+       fprintf ( OUT, "\tGlobalSection(ExtensibilityGlobals) = postSolution\r\n" );
+       fprintf ( OUT, "\tEndGlobalSection\r\n" );
+       fprintf ( OUT, "\tGlobalSection(ExtensibilityAddIns) = postSolution\r\n" );
+       fprintf ( OUT, "\tEndGlobalSection\r\n" );
+       
+       if (configuration.VSProjectVersion == "7.00") {
+               fprintf ( OUT, "\tGlobalSection(ProjectDependencies) = postSolution\r\n" );
+               //FIXME: Add dependencies for VS 2002
+               fprintf ( OUT, "\tEndGlobalSection\r\n" );
+       }
+
+       if (configuration.VSProjectVersion == "8.00") {
+               fprintf ( OUT, "\tGlobalSection(SolutionProperties) = preSolution\r\n" );
+               fprintf ( OUT, "\t\tHideSolutionNode = FALSE\r\n" );
+               fprintf ( OUT, "\tEndGlobalSection\r\n" );
+       }
+
+       fprintf ( OUT, "EndGlobal\r\n" );
+       fprintf ( OUT, "\r\n" );
+}
+
+
+void
+MSVCBackend::_generate_sln_configurations ( FILE* OUT, std::string vcproj_guid )
+{
+       for ( size_t i = 0; i < m_configurations.size (); i++)
+       {
+               const MSVCConfiguration& cfg = *m_configurations[i];
+               fprintf ( OUT, "\t\t%s.%s|Win32.ActiveCfg = %s|Win32\r\n", vcproj_guid.c_str(), cfg.name.c_str(), cfg.name.c_str() );
+               fprintf ( OUT, "\t\t%s.%s|Win32.Build.0 = %s|Win32\r\n", vcproj_guid.c_str(), cfg.name.c_str(), cfg.name.c_str() );
+       }
+}
+
+void
+MSVCBackend::_generate_sln ( FILE* OUT )
+{
+       string sln_guid = "{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}";
+       vector<string> guids;
+
+       _generate_sln_header(OUT);
+       // TODO FIXME - is it necessary to sort them?
+       for ( size_t i = 0; i < ProjectNode.modules.size(); i++ )
+       {
+               Module& module = *ProjectNode.modules[i];
+               
+               std::string vcproj_file = VcprojFileName ( module );
+               _generate_sln_project ( OUT, module, vcproj_file, sln_guid, module.guid, module.non_if_data.libraries );
+       }
+       _generate_sln_footer ( OUT );
+}
+
+const Property* 
+MSVCBackend::_lookup_property ( const Module& module, const std::string& name ) const
+{
+       /* Check local values */
+       for ( size_t i = 0; i < module.non_if_data.properties.size(); i++ )
+       {
+               const Property& property = *module.non_if_data.properties[i];
+               if ( property.name == name )
+                       return &property;
+       }
+       // TODO FIXME - should we check local if-ed properties?
+       for ( size_t i = 0; i < module.project.non_if_data.properties.size(); i++ )
+       {
+               const Property& property = *module.project.non_if_data.properties[i];
+               if ( property.name == name )
+                       return &property;
+       }
+       // TODO FIXME - should we check global if-ed properties?
+       return NULL;
+}