2 * Copyright (C) 2002 Patrik Stridvall
3 * Copyright (C) 2005 Royce Mitchell III
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.
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.
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.
21 #pragma warning ( disable : 4786 )
39 MSVCBackend::_generate_dsp ( const Module
& module
)
42 // TODO FIXME wine hack?
43 const bool wine
= false;
45 string dsp_file
= DspFileName(module
);
46 printf ( "Creating MSVC project: '%s'\n", dsp_file
.c_str() );
47 FILE* OUT
= fopen ( dsp_file
.c_str(), "wb" );
49 vector
<string
> imports
;
50 for ( i
= 0; i
< module
.non_if_data
.libraries
.size(); i
++ )
52 imports
.push_back ( module
.non_if_data
.libraries
[i
]->name
);
55 string module_type
= GetExtension(module
.GetTargetName());
56 bool lib
= (module_type
== ".lib") || (module_type
== ".a");
57 bool dll
= (module_type
== ".dll") || (module_type
== ".cpl");
58 bool exe
= (module_type
== ".exe");
59 // TODO FIXME - need more checks here for 'sys' and possibly 'drv'?
61 bool console
= exe
&& (module
.type
== Win32CUI
);
63 // TODO FIXME - not sure if the count here is right...
65 const char* p
= strpbrk ( dsp_file
.c_str(), "/\\" );
69 p
= strpbrk ( p
+1, "/\\" );
71 string msvc_wine_dir
= "..";
73 msvc_wine_dir
+= "\\..";
75 string wine_include_dir
= msvc_wine_dir
+ "\\include";
77 //$progress_current++;
78 //$output->progress("$dsp_file (file $progress_current of $progress_max)");
80 // TODO FIXME - what's diff. betw. 'c_srcs' and 'source_files'?
81 string dsp_path
= module
.GetBasePath();
82 vector
<string
> c_srcs
, source_files
, resource_files
, includes
, libraries
, defines
;
83 vector
<const IfableData
*> ifs_list
;
84 ifs_list
.push_back ( &module
.project
.non_if_data
);
85 ifs_list
.push_back ( &module
.non_if_data
);
87 // this is a define in MinGW w32api, but not Microsoft's headers
88 defines
.push_back ( "STDCALL=__stdcall" );
90 while ( ifs_list
.size() )
92 const IfableData
& data
= *ifs_list
.back();
94 // TODO FIXME - refactor needed - we're discarding if conditions
95 for ( i
= 0; i
< data
.ifs
.size(); i
++ )
96 ifs_list
.push_back ( &data
.ifs
[i
]->data
);
97 const vector
<File
*>& files
= data
.files
;
98 for ( i
= 0; i
< files
.size(); i
++ )
100 // TODO FIXME - do we want the full path of the file here?
101 string file
= string(".") + &files
[i
]->name
[dsp_path
.size()];
103 source_files
.push_back ( file
);
104 if ( !stricmp ( Right(file
,2).c_str(), ".c" ) )
105 c_srcs
.push_back ( file
);
106 if ( !stricmp ( Right(file
,3).c_str(), ".rc" ) )
107 resource_files
.push_back ( file
);
109 const vector
<Include
*>& incs
= data
.includes
;
110 for ( i
= 0; i
< incs
.size(); i
++ )
113 // explicitly omit win32api directories
114 if ( !strncmp(incs
[i
]->directory
.c_str(), "w32api", 6 ) )
117 // explicitly omit include/wine directories
118 if ( !strncmp(incs
[i
]->directory
.c_str(), "include\\wine", 12 ) )
121 string path
= Path::RelativeFromDirectory (
123 module
.GetBasePath() );
124 includes
.push_back ( path
);
126 const vector
<Library
*>& libs
= data
.libraries
;
127 for ( i
= 0; i
< libs
.size(); i
++ )
129 libraries
.push_back ( libs
[i
]->name
+ ".lib" );
131 const vector
<Define
*>& defs
= data
.defines
;
132 for ( i
= 0; i
< defs
.size(); i
++ )
134 if ( defs
[i
]->value
[0] )
135 defines
.push_back ( defs
[i
]->name
+ "=" + defs
[i
]->value
);
137 defines
.push_back ( defs
[i
]->name
);
140 // TODO FIXME - we don't include header files in our build system
141 //my @header_files = @{module->{header_files}};
142 vector
<string
> header_files
;
144 // TODO FIXME - wine hack?
145 /*if (module.name !~ /^wine(?:_unicode|build|runtests|test)?$/ &&
146 module.name !~ /^(?:gdi32)_.+?$/ &&
147 Right ( module.name, 5 ) == "_test" )
149 source_files.push_back ( module.name + ".spec" );
150 @source_files = sort(@source_files);
154 bool no_msvc_headers
= true;
155 // TODO FIXME - wine hack?
156 /*if (module.name =~ /^wine(?:runtests|test)$/
157 || Right ( module.name, 5 ) == "_test" )
159 no_msvc_headers = false;
162 std::vector
<std::string
> cfgs
;
164 cfgs
.push_back ( module
.name
+ " - Win32" );
168 std::vector
<std::string
> _cfgs
;
169 for ( i
= 0; i
< cfgs
.size(); i
++ )
171 _cfgs
.push_back ( cfgs
[i
] + " C" );
172 _cfgs
.push_back ( cfgs
[i
] + " C++" );
178 // TODO FIXME - wine hack?
181 std::vector<std::string> _cfgs;
182 for ( i = 0; i < cfgs.size(); i++ )
184 _cfgs.push_back ( cfgs[i] + " Debug" );
185 _cfgs.push_back ( cfgs[i] + " Release" );
191 if (!no_msvc_headers
)
193 std::vector
<std::string
> _cfgs
;
194 for ( i
= 0; i
< cfgs
.size(); i
++ )
196 _cfgs
.push_back ( cfgs
[i
] + " MSVC Headers" );
197 _cfgs
.push_back ( cfgs
[i
] + " Wine Headers" );
203 string default_cfg
= cfgs
.back();
205 fprintf ( OUT
, "# Microsoft Developer Studio Project File - Name=\"%s\" - Package Owner=<4>\r\n", module
.name
.c_str() );
206 fprintf ( OUT
, "# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n" );
207 fprintf ( OUT
, "# ** DO NOT EDIT **\r\n" );
208 fprintf ( OUT
, "\r\n" );
212 fprintf ( OUT
, "# TARGTYPE \"Win32 (x86) Static Library\" 0x0104\r\n" );
216 fprintf ( OUT
, "# TARGTYPE \"Win32 (x86) Dynamic-Link Library\" 0x0102\r\n" );
220 fprintf ( OUT
, "# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\r\n" );
222 fprintf ( OUT
, "\r\n" );
224 fprintf ( OUT
, "CFG=%s\r\n", default_cfg
.c_str() );
225 fprintf ( OUT
, "!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n" );
226 fprintf ( OUT
, "!MESSAGE use the Export Makefile command and run\r\n" );
227 fprintf ( OUT
, "!MESSAGE \r\n" );
228 fprintf ( OUT
, "!MESSAGE NMAKE /f \"%s.mak\".\r\n", module
.name
.c_str() );
229 fprintf ( OUT
, "!MESSAGE \r\n" );
230 fprintf ( OUT
, "!MESSAGE You can specify a configuration when running NMAKE\r\n" );
231 fprintf ( OUT
, "!MESSAGE by defining the macro CFG on the command line. For example:\r\n" );
232 fprintf ( OUT
, "!MESSAGE \r\n" );
233 fprintf ( OUT
, "!MESSAGE NMAKE /f \"%s.mak\" CFG=\"%s\"\r\n", module
.name
.c_str(), default_cfg
.c_str() );
234 fprintf ( OUT
, "!MESSAGE \r\n" );
235 fprintf ( OUT
, "!MESSAGE Possible choices for configuration are:\r\n" );
236 fprintf ( OUT
, "!MESSAGE \r\n" );
237 for ( i
= 0; i
< cfgs
.size(); i
++ )
239 const string
& cfg
= cfgs
[i
];
242 fprintf ( OUT
, "!MESSAGE \"%s\" (based on \"Win32 (x86) Static Library\")\r\n", cfg
.c_str() );
246 fprintf ( OUT
, "!MESSAGE \"%s\" (based on \"Win32 (x86) Dynamic-Link Library\")\r\n", cfg
.c_str() );
250 fprintf ( OUT
, "!MESSAGE \"%s\" (based on \"Win32 (x86) Console Application\")\r\n", cfg
.c_str() );
253 fprintf ( OUT
, "!MESSAGE \r\n" );
254 fprintf ( OUT
, "\r\n" );
256 fprintf ( OUT
, "# Begin Project\r\n" );
257 fprintf ( OUT
, "# PROP AllowPerConfigDependencies 0\r\n" );
258 fprintf ( OUT
, "# PROP Scc_ProjName \"\"\r\n" );
259 fprintf ( OUT
, "# PROP Scc_LocalPath \"\"\r\n" );
260 fprintf ( OUT
, "CPP=cl.exe\r\n" );
261 if ( !lib
&& !exe
) fprintf ( OUT
, "MTL=midl.exe\r\n" );
262 fprintf ( OUT
, "RSC=rc.exe\r\n" );
266 std::string output_dir
;
267 for ( size_t icfg
= 0; icfg
< cfgs
.size(); icfg
++ )
269 std::string
& cfg
= cfgs
[icfg
];
274 fprintf ( OUT
, "!IF \"$(CFG)\" == \"%s\"\r\n", cfg
.c_str() );
275 fprintf ( OUT
, "\r\n" );
279 fprintf ( OUT
, "\r\n" );
280 fprintf ( OUT
, "!ELSEIF \"$(CFG)\" == \"%s\"\r\n", cfg
.c_str() );
281 fprintf ( OUT
, "\r\n" );
285 bool debug
= !strstr ( cfg
.c_str(), "Release" );
286 bool msvc_headers
= ( 0 != strstr ( cfg
.c_str(), "MSVC Headers" ) );
288 fprintf ( OUT
, "# PROP BASE Use_MFC 0\r\n" );
292 fprintf ( OUT
, "# PROP BASE Use_Debug_Libraries 1\r\n" );
296 fprintf ( OUT
, "# PROP BASE Use_Debug_Libraries 0\r\n" );
299 output_dir
= Replace(cfg
,module
.name
+ " - ","");
300 output_dir
= Replace(output_dir
," ","_");
301 output_dir
= Replace(output_dir
,"C++","Cxx");
302 // TODO FIXME - wine hack?
303 //if ( output_prefix_dir.size() )
304 // output_dir = output_prefix_dir + "\\" + output_dir;
306 fprintf ( OUT
, "# PROP BASE Output_Dir \"%s\"\r\n", output_dir
.c_str() );
307 fprintf ( OUT
, "# PROP BASE Intermediate_Dir \"%s\"\r\n", output_dir
.c_str() );
309 fprintf ( OUT
, "# PROP BASE Target_Dir \"\"\r\n" );
311 fprintf ( OUT
, "# PROP Use_MFC 0\r\n" );
314 fprintf ( OUT
, "# PROP Use_Debug_Libraries 1\r\n" );
318 fprintf ( OUT
, "# PROP Use_Debug_Libraries 0\r\n" );
320 fprintf ( OUT
, "# PROP Output_Dir \"%s\"\r\n", output_dir
.c_str() );
321 fprintf ( OUT
, "# PROP Intermediate_Dir \"%s\"\r\n", output_dir
.c_str() );
323 if ( dll
) fprintf ( OUT
, "# PROP Ignore_Export_Lib 0\r\n" );
324 fprintf ( OUT
, "# PROP Target_Dir \"\"\r\n" );
328 defines
.push_back ( "_DEBUG" );
331 fprintf ( OUT
, "# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od" );
332 defines
.push_back ( "_LIB" );
336 fprintf ( OUT
, "# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od" );
337 defines
.push_back ( "_WINDOWS" );
338 defines
.push_back ( "_USRDLL" );
339 // TODO FIXME - wine hack?
340 //defines.push_back ( string("\U") + module.name + "\E_EXPORTS" );
345 defines
.push_back ( "NDEBUG" );
348 fprintf ( OUT
, "# ADD BASE CPP /nologo /W3 /GX /O2" );
349 defines
.push_back ( "_LIB" );
353 fprintf ( OUT
, "# ADD BASE CPP /nologo /MT /W3 /GX /O2" );
354 defines
.push_back ( "_WINDOWS" );
355 defines
.push_back ( "_USRDLL" );
356 // TODO FIXME - wine hack?
357 //defines.push_back ( string("\U") + module.name + "\E_EXPORTS" );
361 for ( i
= 0; i
< defines
.size(); i
++ )
363 fprintf ( OUT
, " /D \"%s\"", defines
[i
].c_str() );
365 if ( lib
|| exe
) fprintf ( OUT
, " /YX" );
366 fprintf ( OUT
, " /FD" );
369 fprintf ( OUT
, " /GZ" );
370 if ( lib
|| exe
) fprintf ( OUT
, " " );
372 fprintf ( OUT
, " /c" );
373 fprintf ( OUT
, "\r\n" );
375 vector
<string
> defines2
= defines
;
378 defines2
.push_back ( "_DEBUG" );
381 fprintf ( OUT
, "# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od" );
382 defines2
.push_back ( "_LIB" );
386 fprintf ( OUT
, "# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od" );
387 defines2
.push_back ( "_USRDLL" );
392 defines2
.push_back ( "NDEBUG" );
395 fprintf ( OUT
, "# ADD CPP /nologo /MT /W3 /GX /O2" );
396 defines2
.push_back ( "_LIB" );
400 fprintf ( OUT
, "# ADD CPP /nologo /MT /W3 /GX /O2" );
401 defines2
.push_back ( "_USRDLL" );
405 // TODO FIXME - wine hack?
408 // TODO FIXME - wine hack?
409 //defines2.push_back ( string("_\U") + module.name + "\E_" );
410 // TODO FIXME - wine hack?
411 /*if ( module.name !~ /^(?:wine(?:build|test)|.*?_test)$/ )
412 defines2.push_back ( "__WINESRC__" );*/
414 defines2
.push_back ( "__WINE_USE_NATIVE_HEADERS" );
415 string output_dir2
= Replace(output_dir
,"\\","\\\\");
416 defines2
.push_back ( ssprintf("__WINETEST_OUTPUT_DIR=\\\"%s\\\"",output_dir
.c_str()) );
417 defines2
.push_back ( "__i386__" );
418 defines2
.push_back ( "_X86_" );
420 // TODO FIXME - wine hacks?
421 /*if(module.name =~ /^gdi32_(?:enhmfdrv|mfdrv)$/) {
422 push @includes, ".." );
425 if ( strstr ( module.name.c_str(), "_test" )
427 include.push_back ( msvc_wine_dir + "\\" + output_dir );
430 if (!msvc_headers || module.name == "winetest")
432 includes.push_back ( wine_include_dir );
438 for ( i
= 0; i
< includes
.size(); i
++ )
440 const string
& include
= includes
[i
];
441 if ( strpbrk ( include
.c_str(), "[\\\"]" ) || !strncmp ( include
.c_str(), "../", 3 ) )
443 fprintf ( OUT
, " /I \"%s\"", include
.c_str() );
447 fprintf ( OUT
, " /I %s", include
.c_str() );
452 fprintf ( OUT
, " /I \".\"" );
453 for ( i
= 0; i
< defines2
.size(); i
++ )
455 const string
& define
= defines2
[i
];
456 if ( strpbrk ( define
.c_str(), "[\\\"]" ) )
458 fprintf ( OUT
, " /D \"%s\"", define
.c_str() );
462 fprintf ( OUT
, " /D %s", define
.c_str() );
465 if ( wine
) fprintf ( OUT
, " /D inline=__inline" );
466 if ( 0 && wine
) fprintf ( OUT
, " /D \"__STDC__\"" );
468 fprintf ( OUT
, lib
? " /YX" : " /FR" );
469 fprintf ( OUT
, " /FD" );
470 if ( debug
) fprintf ( OUT
, " /GZ" );
471 if ( debug
&& lib
) fprintf ( OUT
, " " );
472 fprintf ( OUT
, " /c" );
473 if ( !no_cpp
) fprintf ( OUT
, " /TP" );
474 fprintf ( OUT
, "\r\n" );
480 fprintf ( OUT
, "# SUBTRACT CPP /X /YX\r\n" );
481 fprintf ( OUT
, "# ADD BASE MTL /nologo /D \"_DEBUG\" /mktyplib203 /win32\r\n" );
482 fprintf ( OUT
, "# ADD MTL /nologo /D \"_DEBUG\" /mktyplib203 /win32\r\n" );
484 fprintf ( OUT
, "# ADD BASE RSC /l 0x41d /d \"_DEBUG\"\r\n" );
485 fprintf ( OUT
, "# ADD RSC /l 0x41d" );
488 for ( i
= 0; i
< includes
.size(); i
++ )
490 fprintf ( OUT
, " /i \"%s\"", includes
[i
].c_str() );
494 for ( i
= 0; i
< defines
.size(); i
++ )
496 fprintf ( OUT
, " /D \"%s\"", defines
[i
].c_str() );
498 fprintf ( OUT
, " /d \"_DEBUG\"\r\n" );
504 fprintf ( OUT
, "# SUBTRACT CPP /YX\r\n" );
505 fprintf ( OUT
, "# ADD BASE MTL /nologo /D \"NDEBUG\" /mktyplib203 /win32\r\n" );
506 fprintf ( OUT
, "# ADD MTL /nologo /D \"NDEBUG\" /mktyplib203 /win32\r\n" );
508 fprintf ( OUT
, "# ADD BASE RSC /l 0x41d /d \"NDEBUG\"\r\n" );
509 fprintf ( OUT
, "# ADD RSC /l 0x41d" );
512 for ( i
= 0; i
< includes
.size(); i
++ )
513 fprintf ( OUT
, " /i \"%s\"", includes
[i
].c_str() );
516 for ( i
= 0; i
< defines
.size(); i
++ )
518 fprintf ( OUT
, " /D \"%s\"", defines
[i
].c_str() );
522 fprintf ( OUT
, "/d \"NDEBUG\"\r\n" );
524 fprintf ( OUT
, "BSC32=bscmake.exe\r\n" );
525 fprintf ( OUT
, "# ADD BASE BSC32 /nologo\r\n" );
526 fprintf ( OUT
, "# ADD BSC32 /nologo\r\n" );
530 fprintf ( OUT
, "LINK32=link.exe\r\n" );
531 fprintf ( OUT
, "# ADD BASE LINK32 " );
533 for ( i
= 0; i
< libraries
.size(); i
++ )
535 fprintf ( OUT
, "%s ", libraries
[i
].c_str() );
537 fprintf ( OUT
, " /nologo" );
538 if ( dll
) fprintf ( OUT
, " /dll" );
539 if ( console
) fprintf ( OUT
, " /subsystem:console" );
540 if ( debug
) fprintf ( OUT
, " /debug" );
541 fprintf ( OUT
, " /machine:I386" );
542 if ( debug
) fprintf ( OUT
, " /pdbtype:sept" );
543 fprintf ( OUT
, "\r\n" );
545 fprintf ( OUT
, "# ADD LINK32" );
546 fprintf ( OUT
, " /nologo" );
547 // TODO FIXME - do we need their kludge?
548 //if ( module.name == "ntdll" ) fprintf ( OUT, " libcmt.lib" ); // FIXME: Kludge
549 for ( i
= 0; i
< imports
.size(); i
++ )
551 const string
& import
= imports
[i
];
552 if ( import
!= "msvcrt" )
553 fprintf ( OUT
, " %s.lib", import
.c_str() );
555 if ( dll
) fprintf ( OUT
, " /dll" );
556 if ( console
) fprintf ( OUT
, " /subsystem:console" );
557 if ( debug
) fprintf ( OUT
, " /debug" );
558 fprintf ( OUT
, " /machine:I386" );
559 // TODO FIXME - do we need their kludge?
560 //if ( module.name == "ntdll" ) fprintf ( OUT, " /nodefaultlib" ); // FIXME: Kludge
561 if ( dll
) fprintf ( OUT
, " /def:\"%s.def\"", module
.name
.c_str() );
562 if (( dll
) && ( module_type
== ".cpl")) fprintf ( OUT
, " /out:\"Win32\\%s%s\"", module
.name
.c_str(), module_type
.c_str() );
563 if ( debug
) fprintf ( OUT
, " /pdbtype:sept" );
564 fprintf ( OUT
, "\r\n" );
568 fprintf ( OUT
, "LIB32=link.exe -lib\r\n" );
569 fprintf ( OUT
, "# ADD BASE LIB32 /nologo\r\n" );
570 fprintf ( OUT
, "# ADD LIB32 /nologo\r\n" );
576 if ( cfgs
.size() != 0 )
578 fprintf ( OUT
, "\r\n" );
579 fprintf ( OUT
, "!ENDIF \r\n" );
580 fprintf ( OUT
, "\r\n" );
583 if ( module
.name
== "winebuild" )
585 fprintf ( OUT
, "# Begin Special Build Tool\r\n" );
586 fprintf ( OUT
, "SOURCE=\"$(InputPath)\"\r\n" );
587 fprintf ( OUT
, "PostBuild_Desc=Copying wine.dll and wine_unicode.dll ...\r\n" );
588 fprintf ( OUT
, "PostBuild_Cmds=" );
589 fprintf ( OUT
, "copy ..\\..\\library\\%s\\wine.dll $(OutDir)\t",
590 output_dir
.c_str() );
591 fprintf ( OUT
, "copy ..\\..\\unicode\\%s\\wine_unicode.dll $(OutDir)\r\n",
592 output_dir
.c_str() );
593 fprintf ( OUT
, "# End Special Build Tool\r\n" );
596 fprintf ( OUT
, "# Begin Target\r\n" );
597 fprintf ( OUT
, "\r\n" );
598 for ( i
= 0; i
< cfgs
.size(); i
++ )
600 fprintf ( OUT
, "# Name \"%s\"\r\n", cfgs
[i
].c_str() );
603 fprintf ( OUT
, "# Begin Group \"Source Files\"\r\n" );
604 fprintf ( OUT
, "\r\n" );
605 fprintf ( OUT
, "# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n" );
607 for ( size_t isrcfile
= 0; isrcfile
< source_files
.size(); isrcfile
++ )
609 string source_file
= DosSeparator(source_files
[isrcfile
]);
611 if ( strncmp ( source_file
.c_str(), ".\\", 2 ) )
613 source_file
= string(".\\") + source_file
;
616 if ( !strcmp ( &source_file
[source_file
.size()-5], ".spec" ) )
618 string basename
= string ( source_file
.c_str(), source_file
.size() - 5 );
620 // TODO FIXME - not sure what this is doing? wine hack maybe?
621 //if ( basename !~ /\..{1,3}$/; ) basename += string(".dll");
622 string dbg_c_file
= basename
+ ".dbg.c";
624 fprintf ( OUT
, "# Begin Source File\r\n" );
625 fprintf ( OUT
, "\r\n" );
626 fprintf ( OUT
, "SOURCE=%s\r\n", dbg_c_file
.c_str() );
627 fprintf ( OUT
, "# End Source File\r\n" );
630 fprintf ( OUT
, "# Begin Source File\r\n" );
631 fprintf ( OUT
, "\r\n" );
633 fprintf ( OUT
, "SOURCE=%s\r\n", source_file
.c_str() );
635 if ( !strcmp ( &source_file
[source_file
.size()-5], ".spec" ) )
638 string basename
= string ( source_file
.c_str(), source_file
.size() - 5 );
640 string spec_file
= source_file
;
641 string def_file
= basename
+ ".def";
643 // TODO FIXME - not sure what this is doing? wine hack maybe?
644 //if ( basename !~ /\..{1,3}$/; ) basename += ".dll";
645 string dbg_file
= basename
+ ".dbg";
646 string dbg_c_file
= basename
+ ".dbg.c";
648 string srcdir
= "."; // FIXME: Is this really always correct?
650 fprintf ( OUT
, "# Begin Custom Build\r\n" );
651 fprintf ( OUT
, "InputPath=%s\r\n", spec_file
.c_str() );
652 fprintf ( OUT
, "\r\n" );
653 fprintf ( OUT
, "BuildCmds= \\\r\n" );
654 fprintf ( OUT
, "\t..\\..\\tools\\winebuild\\%s\\winebuild.exe --def %s > %s \\\r\n",
659 if ( module
.name
== "ntdll" )
662 for ( i
= 0; i
< c_srcs
.size(); i
++ )
664 const string
& c_src
= c_srcs
[i
];
667 fprintf ( OUT
, "\techo %s >> %s \\\r\n", c_src
.c_str(), dbg_file
.c_str() );
671 fprintf ( OUT
, "\techo %s > %s \\\r\n", c_src
.c_str(), dbg_file
.c_str() );
674 fprintf ( OUT
, "\t..\\..\\tools\\winebuild\\%s\\winebuild.exe",
675 output_dir
.c_str() );
676 fprintf ( OUT
, " -o %s --debug -C%s %s \\\r\n",
684 for ( i
= 0; i
< c_srcs
.size(); i
++ )
686 const string
& c_src
= c_srcs
[i
];
687 if ( !strcmp ( &c_src
[c_src
.size()-2], ".c" ) )
689 if ( sc_srcs
.size() )
695 fprintf ( OUT
, "\t..\\..\\tools\\winebuild\\%s\\winebuild.exe",
696 output_dir
.c_str() );
697 fprintf ( OUT
, " -o %s --debug -C%s %s \\\r\n",
703 fprintf ( OUT
, "\t\r\n" );
704 fprintf ( OUT
, "\r\n" );
705 fprintf ( OUT
, "\"%s\" : $(SOURCE) \"$(INTDIR)\" \"$(OUTDIR)\"\r\n", def_file
.c_str() );
706 fprintf ( OUT
, " $(BuildCmds)\r\n" );
707 fprintf ( OUT
, "\r\n" );
708 fprintf ( OUT
, "\"%s\" : $(SOURCE) \"$(INTDIR)\" \"$(OUTDIR)\"\r\n", dbg_c_file
.c_str() );
709 fprintf ( OUT
, " $(BuildCmds)\r\n" );
710 fprintf ( OUT
, "# End Custom Build\r\n" );
713 /*else if ( source_file =~ /([^\\]*?\.h)$/ )
717 foreach my $cfg (@cfgs) {
721 fprintf ( OUT, "!IF \"$(CFG)\" == \"$cfg\"\r\n" );
722 fprintf ( OUT, "\r\n" );
724 fprintf ( OUT, "\r\n" );
725 fprintf ( OUT, "!ELSEIF \"$(CFG)\" == \"$cfg\"\r\n" );
726 fprintf ( OUT, "\r\n" );
730 $output_dir =~ s/^$project - //;
731 $output_dir =~ s/ /_/g;
732 $output_dir =~ s/C\+\+/Cxx/g;
733 if($output_prefix_dir) {
734 $output_dir = "$output_prefix_dir\\$output_dir" );
737 fprintf ( OUT, "# Begin Custom Build\r\n" );
738 fprintf ( OUT, "OutDir=%s\r\n", output_dir.c_str() );
739 fprintf ( OUT, "InputPath=%s\r\n", source_file.c_str() );
740 fprintf ( OUT, "\r\n" );
741 fprintf ( OUT, "\"$(OutDir)\\wine\\%s\" : $(SOURCE) \"$(INTDIR)\" \"$(OUTDIR)\"\r\n", h_file.c_str() );
742 fprintf ( OUT, "\tcopy \"$(InputPath)\" \"$(OutDir)\\wine\"\r\n" );
743 fprintf ( OUT, "\r\n" );
744 fprintf ( OUT, "# End Custom Build\r\n" );
747 if ( cfgs.size() != 0)
749 fprintf ( OUT, "\r\n" );
750 fprintf ( OUT, "!ENDIF \r\n" );
751 fprintf ( OUT, "\r\n" );
755 fprintf ( OUT
, "# End Source File\r\n" );
757 fprintf ( OUT
, "# End Group\r\n" );
758 fprintf ( OUT
, "# Begin Group \"Header Files\"\r\n" );
759 fprintf ( OUT
, "\r\n" );
760 fprintf ( OUT
, "# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n" );
761 for ( i
= 0; i
< header_files
.size(); i
++ )
763 const string
& header_file
= header_files
[i
];
764 fprintf ( OUT
, "# Begin Source File\r\n" );
765 fprintf ( OUT
, "\r\n" );
766 fprintf ( OUT
, "SOURCE=.\\%s\r\n", header_file
.c_str() );
767 fprintf ( OUT
, "# End Source File\r\n" );
769 fprintf ( OUT
, "# End Group\r\n" );
773 fprintf ( OUT
, "# Begin Group \"Resource Files\"\r\n" );
774 fprintf ( OUT
, "\r\n" );
775 fprintf ( OUT
, "# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n" );
776 /* for ( i = 0; i < resource_files.size(); i++ )
778 const string& resource_file = resource_files[i];
779 fprintf ( OUT, "# Begin Source File\r\n" );
780 fprintf ( OUT, "\r\n" );
781 fprintf ( OUT, "SOURCE=.\\%s\r\n", resource_file.c_str() );
782 fprintf ( OUT, "# End Source File\r\n" );
784 */ fprintf ( OUT
, "# End Group\r\n" );
786 fprintf ( OUT
, "# End Target\r\n" );
787 fprintf ( OUT
, "# End Project\r\n" );
793 MSVCBackend::_generate_dsw_header ( FILE* OUT
)
795 fprintf ( OUT
, "Microsoft Developer Studio Workspace File, Format Version 6.00\r\n" );
796 fprintf ( OUT
, "# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\r\n" );
797 fprintf ( OUT
, "\r\n" );
801 MSVCBackend::_generate_dsw_project (
803 const Module
& module
,
804 std::string dsp_file
,
805 const std::vector
<Dependency
*>& dependencies
)
807 dsp_file
= DosSeparator ( std::string(".\\") + dsp_file
);
809 // TODO FIXME - must they be sorted?
810 //@dependencies = sort(@dependencies);
812 fprintf ( OUT
, "###############################################################################\r\n" );
813 fprintf ( OUT
, "\r\n" );
814 fprintf ( OUT
, "Project: \"%s\"=%s - Package Owner=<4>\r\n", module
.name
.c_str(), dsp_file
.c_str() );
815 fprintf ( OUT
, "\r\n" );
816 fprintf ( OUT
, "Package=<5>\r\n" );
817 fprintf ( OUT
, "{{{\r\n" );
818 fprintf ( OUT
, "}}}\r\n" );
819 fprintf ( OUT
, "\r\n" );
820 fprintf ( OUT
, "Package=<4>\r\n" );
821 fprintf ( OUT
, "{{{\r\n" );
822 for ( size_t i
= 0; i
< dependencies
.size(); i
++ )
824 Dependency
& dependency
= *dependencies
[i
];
825 fprintf ( OUT
, " Begin Project Dependency\r\n" );
826 fprintf ( OUT
, " Project_Dep_Name %s\r\n", dependency
.module
.name
.c_str() );
827 fprintf ( OUT
, " End Project Dependency\r\n" );
829 fprintf ( OUT
, "}}}\r\n" );
830 fprintf ( OUT
, "\r\n" );
834 MSVCBackend::_generate_dsw_footer ( FILE* OUT
)
836 fprintf ( OUT
, "###############################################################################\r\n" );
837 fprintf ( OUT
, "\r\n" );
838 fprintf ( OUT
, "Global:\r\n" );
839 fprintf ( OUT
, "\r\n" );
840 fprintf ( OUT
, "Package=<5>\r\n" );
841 fprintf ( OUT
, "{{{\r\n" );
842 fprintf ( OUT
, "}}}\r\n" );
843 fprintf ( OUT
, "\r\n" );
844 fprintf ( OUT
, "Package=<3>\r\n" );
845 fprintf ( OUT
, "{{{\r\n" );
846 fprintf ( OUT
, "}}}\r\n" );
847 fprintf ( OUT
, "\r\n" );
848 fprintf ( OUT
, "###############################################################################\r\n" );
849 fprintf ( OUT
, "\r\n" );
853 MSVCBackend::_generate_wine_dsw ( FILE* OUT
)
855 _generate_dsw_header(OUT
);
856 // TODO FIXME - is it necessary to sort them?
857 for ( size_t i
= 0; i
< ProjectNode
.modules
.size(); i
++ )
859 Module
& module
= *ProjectNode
.modules
[i
];
861 std::string dsp_file
= DspFileName ( module
);
863 // TODO FIXME - more wine hacks?
864 /*if ( module.name == "gdi32" )
866 for ( size_t idir = 0; idir < gdi32_dirs.size(); idir++ )
868 string dir2 = gdi32_dirs[idir];
869 $dir2 =~ s%^.*?/([^/]+)$%$1%;
871 dependencies.push_back ( Replace ( "gdi32_" + dir2, "/", "_" ) );
875 _generate_dsw_project ( OUT
, module
, dsp_file
, module
.dependencies
);
877 _generate_dsw_footer ( OUT
);