Subversion Repositories DevTools

Rev

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

Rev 4370 Rev 4371
Line 173... Line 173...
173
#   The AndroidManifest.xml file MUST be in the root of the project
173
#   The AndroidManifest.xml file MUST be in the root of the project
174
#   There will be some other files there too
174
#   There will be some other files there too
175
#   Calculate the root of the project
175
#   Calculate the root of the project
176
#
176
#
177
my $project_root = StripFileExt($opt_manifestFile);
177
my $project_root = StripFileExt($opt_manifestFile);
-
 
178
   $project_root = '.' unless $project_root;
178
my $project_buildfile = catfile($project_root, 'build.xml');
179
my $project_buildfile = catfile($project_root, 'build.xml');
179
 
180
 
-
 
181
Message ("Project Base:" . Getcwd());
180
Message ("Project Root:" . $project_root);
182
Message ("Project Root:" . $project_root);
181
Message ("Project Name:" . $opt_projectname);
183
Message ("Project Name:" . $opt_projectname);
182
Message ("Project build file:" . $project_buildfile);
184
Message ("Project build file:" . $project_buildfile);
183
Verbose ("Interface:" . $opt_interface);
185
Verbose ("Interface:" . $opt_interface);
184
 
186