Subversion Repositories DevTools

Rev

Rev 4752 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4752 Rev 7574
Line 27... Line 27...
27
#                -verbose                   - Increase debugging
27
#                -verbose                   - Increase debugging
28
#                -verbose=n                 - Increase debugging
28
#                -verbose=n                 - Increase debugging
29
#                -f=manifestFile.xml        - project Manifest file
29
#                -f=manifestFile.xml        - project Manifest file
30
#                -i=path                    - Path to the interface directory
30
#                -i=path                    - Path to the interface directory
31
#                -t=[P|D]"                  - Build Type. Production or Debug
31
#                -t=[P|D]"                  - Build Type. Production or Debug
-
 
32
#                -pf=platform               - Current platform [Not used]
32
#                -pn=PackageName            - Package Name
33
#                -pn=PackageName            - Package Name
33
#                -pv=PackageVersion         - Package Version
34
#                -pv=PackageVersion         - Package Version
34
#                -clean                     - Will clean the build
35
#                -clean                     - Will clean the build
35
#                -populate                  - Test Env and Populate 'libs'
36
#                -populate                  - Test Env and Populate 'libs'
36
#               Aguments that can be provided by the user
37
#               Aguments that can be provided by the user
Line 66... Line 67...
66
my $opt_interface;
67
my $opt_interface;
67
my $opt_gbetype = 'P';
68
my $opt_gbetype = 'P';
68
my $opt_clean;
69
my $opt_clean;
69
my $opt_pkgname;
70
my $opt_pkgname;
70
my $opt_pkgversion;
71
my $opt_pkgversion;
-
 
72
my $opt_platform;
71
my $opt_projectname;
73
my $opt_projectname;
72
my $opt_populate;
74
my $opt_populate;
73
my $opt_target = 1;
75
my $opt_target = 1;
74
my @opt_jlibs;
76
my @opt_jlibs;
75
my @opt_elibs;
77
my @opt_elibs;
Line 113... Line 115...
113
                "f=s"           => \$opt_manifestFile,  # string
115
                "f=s"           => \$opt_manifestFile,  # string
114
                "i=s"           => \$opt_interface,     # Interface directory
116
                "i=s"           => \$opt_interface,     # Interface directory
115
                "t=s"           => \$opt_gbetype,       # string
117
                "t=s"           => \$opt_gbetype,       # string
116
                "pn=s"          => \$opt_pkgname,       # string
118
                "pn=s"          => \$opt_pkgname,       # string
117
                "pv=s"          => \$opt_pkgversion,    # string
119
                "pv=s"          => \$opt_pkgversion,    # string
-
 
120
                "pf=s"          => \$opt_platform,      # string
118
                "projectname=s" => \$opt_projectname,   # string
121
                "projectname=s" => \$opt_projectname,   # string
119
                "clean"         => \$opt_clean,         # flag
122
                "clean"         => \$opt_clean,         # flag
120
                "populate"      => \$opt_populate,      # flag
123
                "populate"      => \$opt_populate,      # flag
121
                "target:i"      => \$opt_target,        # Number
124
                "target:i"      => \$opt_target,        # Number
122
                "Jar=s"         => \@opt_jars,
125
                "Jar=s"         => \@opt_jars,