test/resources/testproject-android/Rakefile.rb in rake-delphi-0.0.26 vs test/resources/testproject-android/Rakefile.rb in rake-delphi-0.0.27
- old
+ new
@@ -28,9 +28,10 @@
task :prepare, :useresources, :options do |t, opts|
fail 'Cannot compile this project with Delphi below XE5' if Rake::Delphi::EnvVariables.delphi_version < Rake::Delphi::DELPHI_VERSION_XE5
_task = Rake::Task['test_android:compile']
dpr = Rake.application.define_task(Rake::Delphi::Project, (_task.name + ':delphi').to_sym)
dpr[:resources_additional] = 'resources' if opts[:useresources]
+ dpr[:platform_configuration] = 'Debug'
dpr[:platform] = 'Android32'
# always use library path for Android
dpr[:uselibrarypath] = true
options = opts[:options] || {}
if options.kind_of?(String)