Lines Matching refs:Config
33 use Config;
109 $thisPerl .= $Config{_exe} unless $thisPerl =~ m/$Config{_exe}$/i;
483 if (my $config = shift @_) {
484 $configuration = $config;
714 my $defaults = `$qmakebin CONFIG+=compute_defaults 2>&1`;
1094 # Win32 and other platforms may want to check for minimum config
1291 my $config = configurationForVisualStudio();
1302 my @command = ($vcBuildPath, $project, $action, $config);
1426 my $config = passedConfiguration() || configuration();
1457 if ($config =~ m/debug/i) {
1514 my $config = configuration();
1515 my $buildPath = File::Spec->catdir(baseProductDir(), $config);
1523 if ($config =~ /release/i) {
1525 } elsif ($config =~ /debug/i) {
1542 my $config = configuration();
1543 my $buildPath = File::Spec->catdir(baseProductDir(), $config);
1547 my @args = ("--build", $buildPath, "--config", $config);
1557 my $config = configuration();
1558 my $buildPath = File::Spec->catdir(baseProductDir(), $config);
1560 return system("cmake", "--build", $buildPath, "--config", $config, "--target", "clean");
1613 my $config = configuration();
1647 if (grep { $_ eq "CONFIG+=webkit2"} @buildArgs) {
1679 if ($config =~ m/debug/i) {
1680 push @buildArgs, "CONFIG-=release";
1681 push @buildArgs, "CONFIG+=debug";
1685 push @buildArgs, "CONFIG+=release";
1686 push @buildArgs, "CONFIG-=debug";
1688 push @buildArgs, "CONFIG+=debug";
1689 push @buildArgs, "CONFIG+=debug_and_release";
1791 my $config = configuration();
1793 my @command = ("make", "-fMakefile.chromium", "-j$numCpus", "BUILDTYPE=$config", $target);
1802 my $config = configuration();
1832 my @command = ($vcBuildPath, $projectPath, $action, $config);