* Rbuild MSVC Backend changes:
[reactos.git] / reactos / tools / rbuild / backend / msvc / vcprojmaker.cpp
1 /*
2 * Copyright (C) 2002 Patrik Stridvall
3 * Copyright (C) 2005 Royce Mitchell III
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifdef _MSC_VER
21 #pragma warning ( disable : 4786 )
22 #endif//_MSC_VER
23
24 #include <string>
25 #include <vector>
26
27 #include <stdio.h>
28
29 #include "msvc.h"
30
31 using std::string;
32 using std::vector;
33
34 #ifdef OUT
35 #undef OUT
36 #endif//OUT
37
38 void
39 MSVCBackend::_generate_vcproj ( const Module& module )
40 {
41 size_t i;
42 // TODO FIXME wine hack?
43 //const bool wine = false;
44
45 string vcproj_file = VcprojFileName(module);
46 printf ( "Creating MSVC.NET project: '%s'\n", vcproj_file.c_str() );
47 FILE* OUT = fopen ( vcproj_file.c_str(), "wb" );
48
49 vector<string> imports;
50 string module_type = GetExtension(module.GetTargetName());
51 bool lib = (module.type == ObjectLibrary) || (module_type == ".lib") || (module_type == ".a");
52 bool dll = (module_type == ".dll") || (module_type == ".cpl");
53 bool exe = (module_type == ".exe");
54 bool sys = (module_type == ".sys");
55
56 string path_basedir = module.GetPathToBaseDir ();
57 string intenv = Environment::GetIntermediatePath ();
58 string outenv = Environment::GetOutputPath ();
59 string outdir;
60 string intdir;
61
62 if ( intenv == "obj-i386" )
63 intdir = path_basedir + "obj-i386"; /* append relative dir from project dir */
64 else
65 intdir = intenv;
66
67 if ( outenv == "output-i386" )
68 outdir = path_basedir + "output-i386";
69 else
70 outdir = outenv;
71
72 // TODO FIXME - need more checks here for 'sys' and possibly 'drv'?
73
74 bool console = exe && (module.type == Win32CUI);
75
76 // TODO FIXME - not sure if the count here is right...
77 int parts = 0;
78 const char* p = strpbrk ( vcproj_file.c_str(), "/\\" );
79 while ( p )
80 {
81 ++parts;
82 p = strpbrk ( p+1, "/\\" );
83 }
84 string msvc_wine_dir = "..";
85 while ( --parts )
86 msvc_wine_dir += "\\..";
87
88 string wine_include_dir = msvc_wine_dir + "\\include";
89
90 //$progress_current++;
91 //$output->progress("$dsp_file (file $progress_current of $progress_max)");
92
93 string vcproj_path = module.GetBasePath();
94 vector<string> source_files, resource_files, includes, libraries, defines;
95 vector<const IfableData*> ifs_list;
96 ifs_list.push_back ( &module.project.non_if_data );
97 ifs_list.push_back ( &module.non_if_data );
98
99 // MinGW doesn't have a safe-string library yet
100 defines.push_back ( "_CRT_SECURE_NO_DEPRECATE" );
101 defines.push_back ( "_CRT_NON_CONFORMING_SWPRINTFS" );
102 // this is a define in MinGW w32api, but not Microsoft's headers
103 defines.push_back ( "STDCALL=__stdcall" );
104
105 string baseaddr;
106
107 while ( ifs_list.size() )
108 {
109 const IfableData& data = *ifs_list.back();
110 ifs_list.pop_back();
111 // TODO FIXME - refactor needed - we're discarding if conditions
112 for ( i = 0; i < data.ifs.size(); i++ )
113 ifs_list.push_back ( &data.ifs[i]->data );
114 const vector<File*>& files = data.files;
115 for ( i = 0; i < files.size(); i++ )
116 {
117 // TODO FIXME - do we want the full path of the file here?
118 string file = string(".") + &files[i]->name[vcproj_path.size()];
119
120 if ( !stricmp ( Right(file,3).c_str(), ".rc" ) )
121 resource_files.push_back ( file );
122 else
123 source_files.push_back ( file );
124 }
125 const vector<Include*>& incs = data.includes;
126 for ( i = 0; i < incs.size(); i++ )
127 {
128 // explicitly omit win32api directories
129 if ( !strncmp(incs[i]->directory.c_str(), "w32api", 6 ) )
130 continue;
131
132 // explicitly omit include/wine directories
133 if ( !strncmp(incs[i]->directory.c_str(), "include\\wine", 12 ) )
134 continue;
135
136 string path = Path::RelativeFromDirectory (
137 incs[i]->directory,
138 module.GetBasePath() );
139 includes.push_back ( path );
140 }
141 const vector<Library*>& libs = data.libraries;
142 for ( i = 0; i < libs.size(); i++ )
143 {
144 #if 0
145 // this code is deactivated untill the tree builds fine with msvc
146 // --- is appended to each library path which is later
147 // replaced by the configuration
148 // i.e. ../output-i386/lib/rtl/---/rtl.lib becomes
149 // ../output-i386/lib/rtl/Debug/rtl.lib
150 // etc
151 libs[i]->importedModule->
152 string libpath = outdir + "\\" + libs[i]->importedModule->GetBasePath() + "\\---\\" + libs[i]->name + ".lib";
153 libraries.push_back ( libpath );
154 #else
155 libraries.push_back ( libs[i]->name + ".lib" );
156 #endif
157 }
158 const vector<Define*>& defs = data.defines;
159 for ( i = 0; i < defs.size(); i++ )
160 {
161 if ( defs[i]->value[0] )
162 defines.push_back ( defs[i]->name + "=" + defs[i]->value );
163 else
164 defines.push_back ( defs[i]->name );
165 }
166 for ( i = 0; i < data.properties.size(); i++ )
167 {
168 Property& prop = *data.properties[i];
169 if ( strstr ( module.baseaddress.c_str(), prop.name.c_str() ) )
170 baseaddr = prop.value;
171 }
172 }
173
174 vector<string> header_files;
175
176 bool no_cpp = true;
177 bool no_msvc_headers = true;
178
179 std::vector<std::string> cfgs;
180
181 cfgs.push_back ( "Debug" );
182 cfgs.push_back ( "Release" );
183 cfgs.push_back ( "Speed" );
184
185 if (!no_cpp)
186 {
187 std::vector<std::string> _cfgs;
188 for ( i = 0; i < cfgs.size(); i++ )
189 {
190 _cfgs.push_back ( cfgs[i] + " C" );
191 _cfgs.push_back ( cfgs[i] + " C++" );
192 }
193 cfgs.resize(0);
194 cfgs = _cfgs;
195 }
196
197 if (!no_msvc_headers)
198 {
199 std::vector<std::string> _cfgs;
200 for ( i = 0; i < cfgs.size(); i++ )
201 {
202 _cfgs.push_back ( cfgs[i] + " MSVC Headers" );
203 _cfgs.push_back ( cfgs[i] + " Wine Headers" );
204 }
205 cfgs.resize(0);
206 cfgs = _cfgs;
207 }
208
209 string default_cfg = cfgs.back();
210 string include_string;
211
212 fprintf ( OUT, "<?xml version=\"1.0\" encoding = \"Windows-1252\"?>\r\n" );
213 fprintf ( OUT, "<VisualStudioProject\r\n" );
214 fprintf ( OUT, "\tProjectType=\"Visual C++\"\r\n" );
215
216 if (configuration.VSProjectVersion.empty())
217 configuration.VSProjectVersion = MS_VS_DEF_VERSION;
218
219 fprintf ( OUT, "\tVersion=\"%s\"\r\n", configuration.VSProjectVersion.c_str() );
220 fprintf ( OUT, "\tName=\"%s\"\r\n", module.name.c_str() );
221 fprintf ( OUT, "\tProjectGUID=\"%s\"\r\n", module.guid.c_str() );
222 fprintf ( OUT, "\tKeyword=\"Win32Proj\">\r\n" );
223
224 fprintf ( OUT, "\t<Platforms>\r\n" );
225 fprintf ( OUT, "\t\t<Platform\r\n" );
226 fprintf ( OUT, "\t\t\tName=\"Win32\"/>\r\n" );
227 fprintf ( OUT, "\t</Platforms>\r\n" );
228
229 fprintf ( OUT, "\t<ToolFiles>\r\n" );
230 fprintf ( OUT, "\t\t<ToolFile\r\n" );
231
232 string path = Path::RelativeFromDirectory ( ProjectNode.name, module.GetBasePath() );
233 path.erase(path.find(ProjectNode.name, 0), ProjectNode.name.size() + 1);
234
235 fprintf ( OUT, "\t\t\tRelativePath=\"%sgccasm.rules\"/>\r\n", path.c_str() );
236 fprintf ( OUT, "\t</ToolFiles>\r\n" );
237
238 int n = 0;
239
240 std::string output_dir;
241
242 fprintf ( OUT, "\t<Configurations>\r\n" );
243 for ( size_t icfg = 0; icfg < cfgs.size(); icfg++ )
244 {
245 std::string& cfg = cfgs[icfg];
246
247 bool debug = strstr ( cfg.c_str(), "Debug" ) != NULL;
248 bool speed = strstr ( cfg.c_str(), "Speed" ) != NULL;
249 bool release = (!debug && !speed );
250
251 //bool msvc_headers = ( 0 != strstr ( cfg.c_str(), "MSVC Headers" ) );
252
253 fprintf ( OUT, "\t\t<Configuration\r\n" );
254 fprintf ( OUT, "\t\t\tName=\"%s|Win32\"\r\n", cfg.c_str() );
255 fprintf ( OUT, "\t\t\tOutputDirectory=\"%s\\%s\\%s\"\r\n", outdir.c_str (), module.GetBasePath ().c_str (), cfg.c_str() );
256 fprintf ( OUT, "\t\t\tIntermediateDirectory=\"%s\\%s\\%s\"\r\n", intdir.c_str (), module.GetBasePath ().c_str (), cfg.c_str() );
257 fprintf ( OUT, "\t\t\tConfigurationType=\"%d\"\r\n", exe ? 1 : dll ? 2 : lib ? 4 : -1 );
258 fprintf ( OUT, "\t\t\tCharacterSet=\"2\">\r\n" );
259
260 fprintf ( OUT, "\t\t\t<Tool\r\n" );
261 fprintf ( OUT, "\t\t\t\tName=\"VCCLCompilerTool\"\r\n" );
262 fprintf ( OUT, "\t\t\t\tOptimization=\"%d\"\r\n", release ? 2 : 0 );
263
264 fprintf ( OUT, "\t\t\t\tAdditionalIncludeDirectories=\"" );
265 bool multiple_includes = false;
266 fprintf ( OUT, "./;" );
267 for ( i = 0; i < includes.size(); i++ )
268 {
269 const string& include = includes[i];
270 if ( strcmp ( include.c_str(), "." ) )
271 {
272 if ( multiple_includes )
273 fprintf ( OUT, ";" );
274
275 fprintf ( OUT, "%s", include.c_str() );
276 include_string += " /I " + include;
277 multiple_includes = true;
278 }
279 }
280 fprintf ( OUT, "\"\r\n " );
281
282 if ( debug )
283 {
284 defines.push_back ( "_DEBUG" );
285 }
286 else
287 {
288 defines.push_back ( "NDEBUG" );
289 }
290
291 if ( lib || exe )
292 {
293 defines.push_back ( "_LIB" );
294 }
295 else
296 {
297 defines.push_back ( "_WINDOWS" );
298 defines.push_back ( "_USRDLL" );
299 }
300
301 fprintf ( OUT, "\t\t\t\tPreprocessorDefinitions=\"" );
302 for ( i = 0; i < defines.size(); i++ )
303 {
304 if ( i > 0 )
305 fprintf ( OUT, ";" );
306
307 defines[i] = _replace_str(defines[i], "\"","&quot;");
308 fprintf ( OUT, "%s", defines[i].c_str() );
309 }
310 fprintf ( OUT, "\"\r\n" );
311
312 fprintf ( OUT, "\t\t\t\tMinimalRebuild=\"%s\"\r\n", speed ? "FALSE" : "TRUE" );
313 fprintf ( OUT, "\t\t\t\tBasicRuntimeChecks=\"%s\"\r\n", sys ? 0 : (debug ? "3" : "0") );
314 fprintf ( OUT, "\t\t\t\tRuntimeLibrary=\"5\"\r\n" );
315 fprintf ( OUT, "\t\t\t\tBufferSecurityCheck=\"%s\"\r\n", sys ? "FALSE" : (debug ? "TRUE" : "FALSE" ));
316 fprintf ( OUT, "\t\t\t\tEnableFunctionLevelLinking=\"%s\"\r\n", debug ? "TRUE" : "FALSE" );
317
318 if ( module.pch != NULL )
319 {
320 fprintf ( OUT, "\t\t\t\tUsePrecompiledHeader=\"2\"\r\n" );
321 string pch_path = Path::RelativeFromDirectory (
322 module.pch->file.name,
323 module.GetBasePath() );
324 fprintf ( OUT, "\t\t\t\tPrecompiledHeaderThrough=\"%s\"\r\n", pch_path.c_str() );
325 }
326 else
327 {
328 fprintf ( OUT, "\t\t\t\tUsePrecompiledHeader=\"0\"\r\n" );
329 }
330
331 fprintf ( OUT, "\t\t\t\tWholeProgramOptimization=\"%s\"\r\n", release ? "TRUE" : "FALSE");
332 if ( release )
333 {
334 fprintf ( OUT, "\t\t\t\tFavorSizeOrSpeed=\"1\"\r\n" );
335 fprintf ( OUT, "\t\t\t\tStringPooling=\"true\"\r\n" );
336 }
337
338 fprintf ( OUT, "\t\t\t\tEnablePREfast=\"%s\"\r\n", debug ? "TRUE" : "FALSE");
339 fprintf ( OUT, "\t\t\t\tDisableSpecificWarnings=\"4201;4127;4214\"\r\n" );
340 fprintf ( OUT, "\t\t\t\tWarningLevel=\"%s\"\r\n", speed ? "0" : "4" );
341 fprintf ( OUT, "\t\t\t\tDetect64BitPortabilityProblems=\"%s\"\r\n", speed ? "FALSE" : "TRUE");
342 if ( !module.cplusplus )
343 fprintf ( OUT, "\t\t\t\tCompileAs=\"1\"\r\n" );
344 fprintf ( OUT, "\t\t\t\tDebugInformationFormat=\"%s\"/>\r\n", speed ? "0" : "4");
345
346 fprintf ( OUT, "\t\t\t<Tool\r\n" );
347 fprintf ( OUT, "\t\t\t\tName=\"VCCustomBuildTool\"/>\r\n" );
348
349 if ( lib )
350 {
351 fprintf ( OUT, "\t\t\t<Tool\r\n" );
352 fprintf ( OUT, "\t\t\t\tName=\"VCLibrarianTool\"\r\n" );
353 fprintf ( OUT, "\t\t\t\tOutputFile=\"$(OutDir)/%s.lib\"/>\r\n", module.name.c_str() );
354 }
355 else
356 {
357 fprintf ( OUT, "\t\t\t<Tool\r\n" );
358 fprintf ( OUT, "\t\t\t\tName=\"VCLinkerTool\"\r\n" );
359
360 fprintf ( OUT, "\t\t\t\tAdditionalDependencies=\"" );
361 for ( i = 0; i < libraries.size(); i++ )
362 {
363 if ( i > 0 )
364 fprintf ( OUT, " " );
365 #if 0
366 // this code is deactivated untill
367 // msvc can build the whole tree
368 string libpath = libraries[i].c_str();
369 libpath.replace (libpath.find("---"), //See HACK
370 3,
371 cfg);
372 fprintf ( OUT, "%s", libpath.c_str() );
373 #else
374 fprintf ( OUT, "%s", libraries[i].c_str() );
375 #endif
376 }
377 fprintf ( OUT, "\"\r\n" );
378
379 fprintf ( OUT, "\t\t\t\tOutputFile=\"$(OutDir)/%s%s\"\r\n", module.name.c_str(), module_type.c_str() );
380 fprintf ( OUT, "\t\t\t\tLinkIncremental=\"%d\"\r\n", debug ? 2 : 1 );
381 fprintf ( OUT, "\t\t\t\tGenerateDebugInformation=\"%s\"\r\n", speed ? "FALSE" : "TRUE" );
382
383 if ( debug )
384 fprintf ( OUT, "\t\t\t\tProgramDatabaseFile=\"$(OutDir)/%s.pdb\"\r\n", module.name.c_str() );
385
386 if ( sys )
387 {
388 fprintf ( OUT, "\t\t\t\tAdditionalOptions=\" /ALIGN:0x20 /SECTION:INIT,D /IGNORE:4001,4037,4039,4065,4070,4078,4087,4089,4096\"\r\n" );
389 fprintf ( OUT, "\t\t\t\tIgnoreAllDefaultLibraries=\"TRUE\"\r\n" );
390 fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", 3 );
391 fprintf ( OUT, "\t\t\t\tDriver=\"%d\"\r\n", 1 );
392 fprintf ( OUT, "\t\t\t\tCallingConvention=\"%d\"\r\n", 2 );
393 fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"%s\"\r\n", module.entrypoint == "" ? "DriverEntry" : module.entrypoint.c_str ());
394 fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr == "" ? "0x10000" : baseaddr.c_str ());
395 }
396 else if ( exe )
397 {
398 if ( module.type == Kernel )
399 {
400 fprintf ( OUT, "\t\t\t\tAdditionalOptions=\" /SECTION:INIT,D /ALIGN:0x80\"\r\n" );
401 fprintf ( OUT, "\t\t\t\tIgnoreAllDefaultLibraries=\"TRUE\"\r\n" );
402 fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", 3 );
403 fprintf ( OUT, "\t\t\t\tDriver=\"%d\"\r\n", 1 );
404 fprintf ( OUT, "\t\t\t\tCallingConvention=\"%d\"\r\n", 2 );
405 fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"KiSystemStartup\"\r\n" );
406 fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr.c_str ());
407 }
408 else if ( module.type == NativeCUI )
409 {
410 fprintf ( OUT, "\t\t\t\tAdditionalOptions=\" /ALIGN:0x20\"\r\n" );
411 fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", 1 );
412 fprintf ( OUT, "\t\t\t\tCallingConvention=\"%d\"\r\n", 2 );
413 fprintf ( OUT, "\t\t\t\tIgnoreAllDefaultLibraries=\"TRUE\"\r\n" );
414 fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"NtProcessStartup\"\r\n" );
415 fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr.c_str ());
416 }
417 else if ( module.type == Win32CUI || module.type == Win32GUI )
418 {
419 fprintf ( OUT, "\t\t\t\tSubSystem=\"%d\"\r\n", console ? 1 : 2 );
420 }
421 }
422 else if ( dll )
423 {
424 fprintf ( OUT, "\t\t\t\tEntryPointSymbol=\"%s\"\r\n", module.entrypoint == "" ? "DllMain" : module.entrypoint.c_str ());
425 fprintf ( OUT, "\t\t\t\tBaseAddress=\"%s\"\r\n", baseaddr == "" ? "0x40000" : baseaddr.c_str ());
426 }
427 fprintf ( OUT, "\t\t\t\tTargetMachine=\"%d\"/>\r\n", 1 );
428 }
429
430 fprintf ( OUT, "\t\t\t<Tool\r\n" );
431 fprintf ( OUT, "\t\t\t\tName=\"VCResourceCompilerTool\"\r\n" );
432 fprintf ( OUT, "\t\t\t\tAdditionalIncludeDirectories=\"" );
433 multiple_includes = false;
434 fprintf ( OUT, "./;" );
435 for ( i = 0; i < includes.size(); i++ )
436 {
437 const string& include = includes[i];
438 if ( strcmp ( include.c_str(), "." ) )
439 {
440 if ( multiple_includes )
441 fprintf ( OUT, ";" );
442 fprintf ( OUT, "%s", include.c_str() );
443 multiple_includes = true;
444 }
445 }
446 fprintf ( OUT, "\"/>\r\n " );
447
448 fprintf ( OUT, "\t\t\t<Tool\r\n" );
449 fprintf ( OUT, "\t\t\t\tName=\"VCMIDLTool\"/>\r\n" );
450 fprintf ( OUT, "\t\t\t<Tool\r\n" );
451 fprintf ( OUT, "\t\t\t\tName=\"VCPostBuildEventTool\"/>\r\n" );
452 fprintf ( OUT, "\t\t\t<Tool\r\n" );
453 fprintf ( OUT, "\t\t\t\tName=\"VCPreBuildEventTool\"/>\r\n" );
454 fprintf ( OUT, "\t\t\t<Tool\r\n" );
455 fprintf ( OUT, "\t\t\t\tName=\"VCPreLinkEventTool\"/>\r\n" );
456 fprintf ( OUT, "\t\t\t<Tool\r\n" );
457 fprintf ( OUT, "\t\t\t\tName=\"VCWebServiceProxyGeneratorTool\"/>\r\n" );
458 fprintf ( OUT, "\t\t\t<Tool\r\n" );
459 fprintf ( OUT, "\t\t\t\tName=\"VCWebDeploymentTool\"/>\r\n" );
460 fprintf ( OUT, "\t\t</Configuration>\r\n" );
461
462 n++;
463 }
464 fprintf ( OUT, "\t</Configurations>\r\n" );
465
466 fprintf ( OUT, "\t<Files>\r\n" );
467
468 // Source files
469 fprintf ( OUT, "\t\t<Filter\r\n" );
470 fprintf ( OUT, "\t\t\tName=\"Source Files\"\r\n" );
471 fprintf ( OUT, "\t\t\tFilter=\"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;S\">\r\n" );
472 for ( size_t isrcfile = 0; isrcfile < source_files.size(); isrcfile++ )
473 {
474 string source_file = DosSeparator(source_files[isrcfile]);
475 fprintf ( OUT, "\t\t\t<File\r\n" );
476 fprintf ( OUT, "\t\t\t\tRelativePath=\"%s\">\r\n", source_file.c_str() );
477
478 for ( size_t iconfig = 0; iconfig < cfgs.size(); iconfig++ )
479 {
480 std::string& config = cfgs[iconfig];
481
482 if (( isrcfile == 0 ) && ( module.pch != NULL ))
483 {
484 /* little hack to speed up PCH */
485 fprintf ( OUT, "\t\t\t\t<FileConfiguration\r\n" );
486 fprintf ( OUT, "\t\t\t\t\tName=\"" );
487 fprintf ( OUT, config.c_str() );
488 fprintf ( OUT, "|Win32\">\r\n" );
489 fprintf ( OUT, "\t\t\t\t\t<Tool\r\n" );
490 fprintf ( OUT, "\t\t\t\t\t\tName=\"VCCLCompilerTool\"\r\n" );
491 fprintf ( OUT, "\t\t\t\t\t\tUsePrecompiledHeader=\"1\"/>\r\n" );
492 fprintf ( OUT, "\t\t\t\t</FileConfiguration>\r\n" );
493 }
494
495 if (configuration.VSProjectVersion < "8.00") {
496 if ((source_file.find(".idl") != string::npos) || ((source_file.find(".asm") != string::npos || tolower(source_file.at(source_file.size() - 1)) == 's')))
497 {
498 fprintf ( OUT, "\t\t\t\t<FileConfiguration\r\n" );
499 fprintf ( OUT, "\t\t\t\t\tName=\"" );
500 fprintf ( OUT, config.c_str() );
501 fprintf ( OUT, "|Win32\">\r\n" );
502 fprintf ( OUT, "\t\t\t\t\t<Tool\r\n" );
503 if (source_file.find(".idl") != string::npos)
504 {
505 fprintf ( OUT, "\t\t\t\t\t\tName=\"VCCustomBuildTool\"\r\n" );
506 fprintf ( OUT, "\t\t\t\t\t\tOutputs=\"$(OutDir)\\(InputName).obj\"/>\r\n" );
507 }
508 else if ((source_file.find(".asm") != string::npos || tolower(source_file.at(source_file.size() - 1)) == 's'))
509 {
510 fprintf ( OUT, "\t\t\t\t\t\tName=\"VCCustomBuildTool\"\r\n" );
511 fprintf ( OUT, "\t\t\t\t\t\tCommandLine=\"cl /E &quot;$(InputPath)&quot; %s /D__ASM__ | as -o &quot;$(OutDir)\\(InputName).obj&quot;\"\r\n",include_string.c_str() );
512 fprintf ( OUT, "\t\t\t\t\t\tOutputs=\"$(OutDir)\\(InputName).obj\"/>\r\n" );
513 }
514 fprintf ( OUT, "\t\t\t\t</FileConfiguration>\r\n" );
515 }
516 }
517 }
518 fprintf ( OUT, "\t\t\t</File>\r\n" );
519 }
520 fprintf ( OUT, "\t\t</Filter>\r\n" );
521
522 // Header files
523 fprintf ( OUT, "\t\t<Filter\r\n" );
524 fprintf ( OUT, "\t\t\tName=\"Header Files\"\r\n" );
525 fprintf ( OUT, "\t\t\tFilter=\"h;hpp;hxx;hm;inl\">\r\n" );
526 for ( i = 0; i < header_files.size(); i++ )
527 {
528 const string& header_file = header_files[i];
529 fprintf ( OUT, "\t\t\t<File\r\n" );
530 fprintf ( OUT, "\t\t\t\tRelativePath=\"%s\">\r\n", header_file.c_str() );
531 fprintf ( OUT, "\t\t\t</File>\r\n" );
532 }
533 fprintf ( OUT, "\t\t</Filter>\r\n" );
534
535 // Resource files
536 fprintf ( OUT, "\t\t<Filter\r\n" );
537 fprintf ( OUT, "\t\t\tName=\"Resource Files\"\r\n" );
538 fprintf ( OUT, "\t\t\tFilter=\"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\">\r\n" );
539 for ( i = 0; i < resource_files.size(); i++ )
540 {
541 const string& resource_file = resource_files[i];
542 fprintf ( OUT, "\t\t\t<File\r\n" );
543 fprintf ( OUT, "\t\t\t\tRelativePath=\"%s\">\r\n", resource_file.c_str() );
544 fprintf ( OUT, "\t\t\t</File>\r\n" );
545 }
546 fprintf ( OUT, "\t\t</Filter>\r\n" );
547
548 fprintf ( OUT, "\t</Files>\r\n" );
549 fprintf ( OUT, "\t<Globals>\r\n" );
550 fprintf ( OUT, "\t</Globals>\r\n" );
551 fprintf ( OUT, "</VisualStudioProject>\r\n" );
552 fclose(OUT);
553 }
554
555 std::string
556 MSVCBackend::_replace_str(std::string string1, const std::string &find_str, const std::string &replace_str)
557 {
558 std::string::size_type pos = string1.find(find_str, 0);
559 int intLen = find_str.length();
560
561 while(std::string::npos != pos)
562 {
563 string1.replace(pos, intLen, replace_str);
564 pos = string1.find(find_str, intLen + pos);
565 }
566
567 return string1;
568 }
569
570 std::string
571 MSVCBackend::_get_solution_verion ( void ) {
572 string version;
573
574 if (configuration.VSProjectVersion.empty())
575 configuration.VSProjectVersion = MS_VS_DEF_VERSION;
576
577 if (configuration.VSProjectVersion == "7.00")
578 version = "7.00";
579
580 if (configuration.VSProjectVersion == "7.10")
581 version = "8.00";
582
583 if (configuration.VSProjectVersion == "8.00")
584 version = "9.00";
585
586 return version;
587 }
588
589
590 void
591 MSVCBackend::_generate_rules_file ( FILE* OUT )
592 {
593 fprintf ( OUT, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n" );
594 fprintf ( OUT, "<VisualStudioToolFile\r\n" );
595 fprintf ( OUT, "\tName=\"GCC Assembler\"\r\n" );
596 fprintf ( OUT, "\tVersion=\"%s\"\r\n", _get_solution_verion().c_str() );
597 fprintf ( OUT, "\t>\r\n" );
598 fprintf ( OUT, "\t<Rules>\r\n" );
599 fprintf ( OUT, "\t\t<CustomBuildRule\r\n" );
600 fprintf ( OUT, "\t\t\tName=\"Assembler\"\r\n" );
601 fprintf ( OUT, "\t\t\tDisplayName=\"Assembler Files\"\r\n" );
602 fprintf ( OUT, "\t\t\tCommandLine=\"cl /E &quot;$(InputPath)&quot; | as -o &quot;$(OutDir)\\$(InputName).obj&quot;\"\r\n" );
603 fprintf ( OUT, "\t\t\tOutputs=\"$(OutDir)\\$(InputName).obj\"\r\n" );
604 fprintf ( OUT, "\t\t\tFileExtensions=\"*.S\"\r\n" );
605 fprintf ( OUT, "\t\t\tExecutionDescription=\"asm\"\r\n" );
606 fprintf ( OUT, "\t\t\t>\r\n" );
607 fprintf ( OUT, "\t\t\t<Properties>\r\n" );
608 fprintf ( OUT, "\t\t\t</Properties>\r\n" );
609 fprintf ( OUT, "\t\t</CustomBuildRule>\r\n" );
610 fprintf ( OUT, "\t</Rules>\r\n" );
611 fprintf ( OUT, "</VisualStudioToolFile>\r\n" );
612 }
613
614 void
615 MSVCBackend::_generate_sln_header ( FILE* OUT )
616 {
617 fprintf ( OUT, "Microsoft Visual Studio Solution File, Format Version %s\r\n", _get_solution_verion().c_str() );
618 fprintf ( OUT, "# Visual Studio 2005\r\n" );
619 fprintf ( OUT, "\r\n" );
620 }
621
622
623 void
624 MSVCBackend::_generate_sln_project (
625 FILE* OUT,
626 const Module& module,
627 std::string vcproj_file,
628 std::string sln_guid,
629 std::string vcproj_guid,
630 const std::vector<Dependency*>& dependencies )
631 {
632 vcproj_file = DosSeparator ( std::string(".\\") + vcproj_file );
633
634 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() );
635
636 //FIXME: only omit ProjectDependencies in VS 2005 when there are no dependencies
637 //NOTE: VS 2002 do not use ProjectSection; it uses GlobalSection instead
638 if ((configuration.VSProjectVersion == "7.10") || (dependencies.size() > 0)) {
639 fprintf ( OUT, "\tProjectSection(ProjectDependencies) = postProject\r\n" );
640 for ( size_t i = 0; i < dependencies.size(); i++ )
641 {
642 Dependency& dependency = *dependencies[i];
643 fprintf ( OUT, "\t\t%s = %s\r\n", dependency.module.guid.c_str(), dependency.module.guid.c_str() );
644 }
645 fprintf ( OUT, "\tEndProjectSection\r\n" );
646 }
647
648 fprintf ( OUT, "EndProject\r\n" );
649 }
650
651
652 void
653 MSVCBackend::_generate_sln_footer ( FILE* OUT )
654 {
655 fprintf ( OUT, "Global\r\n" );
656 fprintf ( OUT, "\tGlobalSection(SolutionConfiguration) = preSolution\r\n" );
657 fprintf ( OUT, "\t\tDebug = Debug\r\n" );
658 fprintf ( OUT, "\t\tRelease = Release\r\n" );
659 fprintf ( OUT, "\tEndGlobalSection\r\n" );
660 fprintf ( OUT, "\tGlobalSection(ProjectConfiguration) = postSolution\r\n" );
661 for ( size_t i = 0; i < ProjectNode.modules.size(); i++ )
662 {
663 Module& module = *ProjectNode.modules[i];
664 std::string guid = module.guid;
665 _generate_sln_configurations ( OUT, guid.c_str() );
666 }
667 fprintf ( OUT, "\tEndGlobalSection\r\n" );
668 fprintf ( OUT, "\tGlobalSection(ExtensibilityGlobals) = postSolution\r\n" );
669 fprintf ( OUT, "\tEndGlobalSection\r\n" );
670 fprintf ( OUT, "\tGlobalSection(ExtensibilityAddIns) = postSolution\r\n" );
671 fprintf ( OUT, "\tEndGlobalSection\r\n" );
672
673 if (configuration.VSProjectVersion == "7.00") {
674 fprintf ( OUT, "\tGlobalSection(ProjectDependencies) = postSolution\r\n" );
675 //FIXME: Add dependencies for VS 2002
676 fprintf ( OUT, "\tEndGlobalSection\r\n" );
677 }
678
679 if (configuration.VSProjectVersion == "8.00") {
680 fprintf ( OUT, "\tGlobalSection(SolutionProperties) = preSolution\r\n" );
681 fprintf ( OUT, "\t\tHideSolutionNode = FALSE\r\n" );
682 fprintf ( OUT, "\tEndGlobalSection\r\n" );
683 }
684
685 fprintf ( OUT, "EndGlobal\r\n" );
686 fprintf ( OUT, "\r\n" );
687 }
688
689
690 void
691 MSVCBackend::_generate_sln_configurations ( FILE* OUT, std::string vcproj_guid )
692 {
693 fprintf ( OUT, "\t\t%s.Debug.ActiveCfg = Debug|Win32\r\n", vcproj_guid.c_str() );
694 fprintf ( OUT, "\t\t%s.Debug.Build.0 = Debug|Win32\r\n", vcproj_guid.c_str() );
695 fprintf ( OUT, "\t\t%s.Debug.Release.ActiveCfg = Release|Win32\r\n", vcproj_guid.c_str() );
696 fprintf ( OUT, "\t\t%s.Debug.Release.Build.0 = Release|Win32\r\n", vcproj_guid.c_str() );
697 }
698
699 void
700 MSVCBackend::_generate_sln ( FILE* OUT )
701 {
702 string sln_guid = "{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}";
703 vector<string> guids;
704
705 _generate_sln_header(OUT);
706 // TODO FIXME - is it necessary to sort them?
707 for ( size_t i = 0; i < ProjectNode.modules.size(); i++ )
708 {
709 Module& module = *ProjectNode.modules[i];
710
711 std::string vcproj_file = VcprojFileName ( module );
712 _generate_sln_project ( OUT, module, vcproj_file, sln_guid, module.guid, module.dependencies );
713 }
714 _generate_sln_footer ( OUT );
715 }
716