Subversion Repositories DevTools

Rev

Rev 4699 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4699 Rev 4726
Line 2764... Line 2764...
2764
    #   Calcuate the aliases that are being extracted from targets
2764
    #   Calcuate the aliases that are being extracted from targets
2765
    #
2765
    #
2766
    Process_TargetAlias();
2766
    Process_TargetAlias();
2767
 
2767
 
2768
    #
2768
    #
-
 
2769
    #   Calculate NATIVE alaias
-
 
2770
    #   Limit the Native Alias to active platforms
-
 
2771
    #
-
 
2772
    if (exists $BUILDALIAS{NATIVE})
-
 
2773
    {
-
 
2774
        Warning('User has manually specified a NATIVE alias','Default alias will not be set.');
-
 
2775
    }
-
 
2776
    else
-
 
2777
    {
-
 
2778
        my %activePatformMap = map {$_ => 1} @BUILD_ACTIVEPLATFORMS;
-
 
2779
        my @activeNatives;
-
 
2780
        foreach my $item (PlatformConfig::getNativeTargets())
-
 
2781
        {
-
 
2782
            push (@activeNatives, $item) if exists($activePatformMap{$item});
-
 
2783
        }
-
 
2784
        
-
 
2785
        $BUILDALIAS{NATIVE} = join(' ', @activeNatives);
-
 
2786
    }
-
 
2787
 
-
 
2788
    #
2769
    #   Create dummy package to describe the Interface directory
2789
    #   Create dummy package to describe the Interface directory
2770
    #
2790
    #
2771
    CreateInterfacePackage();
2791
    CreateInterfacePackage();
2772
 
2792
 
2773
    #
2793
    #