diff options
Diffstat (limited to 'Tools/Scripts/build-dumprendertree')
-rwxr-xr-x | Tools/Scripts/build-dumprendertree | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Tools/Scripts/build-dumprendertree b/Tools/Scripts/build-dumprendertree index 4e206f4bc..1ff75f7d3 100755 --- a/Tools/Scripts/build-dumprendertree +++ b/Tools/Scripts/build-dumprendertree @@ -44,8 +44,6 @@ Usage: $programName [options] [options to pass to build system] --clean Clean up the build directory --gtk Build the GTK+ port --qt Build the Qt port - --wx Build the wxWindows port - --chromium Build the Chromium port --efl Build the EFL port EOF @@ -70,9 +68,10 @@ my $result; if (isAppleMacWebKit()) { $result = buildXCodeProject("DumpRenderTree", $clean, XcodeOptions(), @ARGV); } elsif (isAppleWinWebKit()) { - $result = buildVisualStudioProject("DumpRenderTree.sln", $clean); -} elsif (isQt() || isGtk() || isWx() || isChromium() || isEfl()) { - # Qt, Gtk wxWindows, Chromium and EFL build everything in one shot. No need to build anything here. + my $drtSolutionPath = "DumpRenderTree.vcxproj/DumpRenderTree.sln"; + $result = buildVisualStudioProject($drtSolutionPath, $clean); +} elsif (isQt() || isGtk() || isEfl()) { + # Qt, Gtk and EFL build everything in one shot. No need to build anything here. $result = 0; } else { die "Building not defined for this platform!\n"; |