rake-delphi 0.0.9 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/2 +336 -0
- data/Gemfile +2 -1
- data/lib/rake/common/logger.rb +1 -1
- data/lib/rake/delphi/androidmanifest.rb +57 -0
- data/lib/rake/delphi/dcc32.rb +58 -59
- data/lib/rake/delphi/dcc32tool.rb +51 -0
- data/lib/rake/delphi/dccaarmtool.rb +29 -0
- data/lib/rake/delphi/envvariables.rb +19 -22
- data/lib/rake/delphi/paclient.rb +251 -0
- data/lib/rake/delphi/paclienttool.rb +20 -0
- data/lib/rake/delphi/project.rb +4 -2
- data/lib/rake/delphi/projectinfo.rb +73 -1
- data/lib/rake/delphi/resources.rb +1 -1
- data/lib/rake/delphi/tool.rb +8 -1
- data/lib/rake/delphi/version.rb +1 -1
- data/lib/rake/helpers/gemversion.rb +11 -0
- data/lib/rake/helpers/raketask.rb +16 -0
- data/lib/rake/helpers/string.rb +13 -0
- data/rake-delphi-cygwin.env.cmd +11 -0
- data/rake-delphi-cygwin.env.sh +12 -0
- data/rake-delphi.gemspec +4 -1
- data/test/helpers/consts.rb +6 -1
- data/test/helpers/verinfo.rb +22 -3
- data/test/resources/testproject-android/AndroidManifest.erb +35 -0
- data/test/resources/testproject-android/AndroidManifest.xml +35 -0
- data/test/resources/testproject-android/Rakefile.rb +55 -0
- data/test/resources/testproject-android/TestProject.cfg +4 -0
- data/test/resources/testproject-android/TestProject.dpr +15 -0
- data/test/resources/testproject-android/TestProject.rc +62 -0
- data/test/resources/testproject-android/TestProject.res +0 -0
- data/test/resources/testproject-android/TestProject.xe5.dproj +373 -0
- data/test/resources/testproject-android/fmTest.fmx +26 -0
- data/test/resources/testproject-android/fmTest.pas +31 -0
- data/test/resources/testproject-android/local.resources.txt +1 -0
- data/test/resources/testproject-android/release.dcc.cfg +1 -0
- data/test/resources/testproject-android/resources.rc +1 -0
- data/test/resources/testproject-android/resources.res +0 -0
- data/test/resources/testproject/Rakefile.rb +1 -1
- data/test/test-delphi-android.rb +192 -0
- data/test/test-delphi.rb +3 -11
- data/test/test-envvariables.rb +7 -0
- data/test/test-gemversion.rb +11 -0
- data/test/test-projectinfo-android.rb +81 -0
- data/test/test-projectinfo.rb +0 -11
- data/test/test-string.rb +41 -0
- metadata +92 -6
- data/test/resources/testproject/testproject.cfg.1 +0 -8
- data/test/resources/testproject/testproject.drc +0 -210
data/lib/rake/delphi/tool.rb
CHANGED
@@ -13,7 +13,6 @@ module Rake
|
|
13
13
|
EDSRegRoot = 'SOFTWARE\\CodeGear\\BDS'
|
14
14
|
EmbarcaderoRegRoot = 'SOFTWARE\\Embarcadero\\BDS'
|
15
15
|
|
16
|
-
# used mainly in tests
|
17
16
|
def self.reinit
|
18
17
|
@@version, @@delphidir, @@toolpath = nil, nil, nil
|
19
18
|
end
|
@@ -36,6 +35,14 @@ module Rake
|
|
36
35
|
@@toolpath
|
37
36
|
end
|
38
37
|
|
38
|
+
def delphidir
|
39
|
+
@@delphidir
|
40
|
+
end
|
41
|
+
|
42
|
+
def options
|
43
|
+
''
|
44
|
+
end
|
45
|
+
|
39
46
|
def versionInfoClass
|
40
47
|
return @@version.to_f < 11 ? BDSVersionInfo : \
|
41
48
|
@@version.to_f < 13 ? RAD2007VersionInfo : \
|
data/lib/rake/delphi/version.rb
CHANGED
@@ -35,6 +35,17 @@ module Gem
|
|
35
35
|
self.class.new segments.join('.')
|
36
36
|
end
|
37
37
|
|
38
|
+
##
|
39
|
+
# Returns release only part
|
40
|
+
# (e.g. 1.2.3.4 -> 3, 1.2.3 -> 2)
|
41
|
+
def release_num
|
42
|
+
segments = self.segments.dup
|
43
|
+
segments.pop while segments.any? { |s| String === s }
|
44
|
+
segments.pop if segments.size > 1
|
45
|
+
|
46
|
+
segments[-1]
|
47
|
+
end
|
48
|
+
|
38
49
|
def comma
|
39
50
|
segments.dup.join(',')
|
40
51
|
end
|
@@ -11,9 +11,18 @@ module Rake
|
|
11
11
|
|
12
12
|
def initialize(name, app)
|
13
13
|
@logger = Logger.new(STDOUT)
|
14
|
+
@enabled = true
|
14
15
|
initialize_base(name, app)
|
15
16
|
end
|
16
17
|
|
18
|
+
def needed?
|
19
|
+
@enabled
|
20
|
+
end
|
21
|
+
|
22
|
+
def needed=(value)
|
23
|
+
@enabled = value
|
24
|
+
end
|
25
|
+
|
17
26
|
# replace execute to indicate what method is executed
|
18
27
|
def execute(args=nil)
|
19
28
|
puts "Executing #{name}"
|
@@ -34,5 +43,12 @@ module Rake
|
|
34
43
|
n.gsub!(scope + ':', '') unless scope.empty?
|
35
44
|
return n
|
36
45
|
end
|
46
|
+
|
47
|
+
def reenable_chain
|
48
|
+
reenable
|
49
|
+
prerequisites.each do |ptask|
|
50
|
+
ptask.reenable_chain if ptask.class < Rake::Task
|
51
|
+
end
|
52
|
+
end
|
37
53
|
end
|
38
54
|
end
|
data/lib/rake/helpers/string.rb
CHANGED
@@ -7,4 +7,17 @@ class String
|
|
7
7
|
insert(0, value)
|
8
8
|
end
|
9
9
|
end
|
10
|
+
|
11
|
+
def starts_with?(prefix)
|
12
|
+
prefix = prefix.to_s
|
13
|
+
self[0, prefix.length] == prefix
|
14
|
+
end
|
15
|
+
|
16
|
+
def double_delimiters
|
17
|
+
gsub('\\', '\\\\\\')
|
18
|
+
end
|
19
|
+
|
20
|
+
def double_delimiters!
|
21
|
+
replace(self.double_delimiters)
|
22
|
+
end
|
10
23
|
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
rem example of a env var set
|
2
|
+
set DELPHI_ANDROID_KEYSTORE=d:\Delphi\Embarcadero\RAD Studio\12.0\debug.keystore
|
3
|
+
set DELPHI_ANDROID_SDK_PLATFORM_TOOLS=d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\tools
|
4
|
+
set DELPHI_ANDROID_SDK_PLATFORM_PATH=d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17
|
5
|
+
set DELPHI_ANDROID_KEYSTORE_PARAMS=androiddebugkey,MD5withRSA,SHA1,android,android
|
6
|
+
set DELPHI_ANDROID_SDK_BUILD_TOOLS_PATH=d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2
|
7
|
+
set DELPHI_ANDROID_SDK_LIBPATH=d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\platforms\android-14\arch-arm\usr\lib
|
8
|
+
set DELPHI_ANDROID_SDK_LINKER=d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-ld.exe
|
9
|
+
set DELPHI_ANDROID_SDK_LINKER_OPTION= -L \"d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\sources\cxx-stl\stlport\libs\armeabi-v7a\"
|
10
|
+
set DELPHI_ANDROID_SDK_STRIPDEBUG=d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe
|
11
|
+
set JAVA_SDK_PATH=d:\Java\jdk1.7.0_60\bin
|
@@ -0,0 +1,12 @@
|
|
1
|
+
#!/usr/bin/sh
|
2
|
+
# example of a env var set
|
3
|
+
export DELPHI_ANDROID_KEYSTORE='d:\Delphi\Embarcadero\RAD Studio\12.0\debug.keystore'
|
4
|
+
export DELPHI_ANDROID_SDK_PLATFORM_TOOLS='d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\tools'
|
5
|
+
export DELPHI_ANDROID_SDK_PLATFORM_PATH='d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17'
|
6
|
+
export DELPHI_ANDROID_KEYSTORE_PARAMS='androiddebugkey,MD5withRSA,SHA1,android,android'
|
7
|
+
export DELPHI_ANDROID_SDK_BUILD_TOOLS_PATH='d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2'
|
8
|
+
export DELPHI_ANDROID_SDK_LIBPATH='d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\platforms\android-14\arch-arm\usr\lib'
|
9
|
+
export DELPHI_ANDROID_SDK_LINKER='d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-ld.exe'
|
10
|
+
export DELPHI_ANDROID_SDK_LINKER_OPTION=' -L \"d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\sources\cxx-stl\stlport\libs\armeabi-v7a\"'
|
11
|
+
export DELPHI_ANDROID_SDK_STRIPDEBUG='d:\Delphi\Embarcadero\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe'
|
12
|
+
export JAVA_SDK_PATH='d:\Java\jdk1.7.0_60\bin'
|
data/rake-delphi.gemspec
CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
18
18
|
# avoid adding redundant files
|
19
19
|
spec.files.delete_if do |f|
|
20
20
|
match = false
|
21
|
-
[/\/test\/tmp\//, /\/dcu
|
21
|
+
[/\/test\/tmp\//, /\/dcu\//, /\.drc$/].each do |re|
|
22
22
|
match = re.match(f)
|
23
23
|
break if match
|
24
24
|
end
|
@@ -30,4 +30,7 @@ Gem::Specification.new do |spec|
|
|
30
30
|
|
31
31
|
spec.add_development_dependency "bundler", "~> 1.3"
|
32
32
|
spec.add_development_dependency "rake", "~> 10.0.4"
|
33
|
+
spec.add_development_dependency "xml-simple"
|
34
|
+
spec.add_development_dependency "rubyzip", "~> 0.9.9"
|
35
|
+
spec.add_development_dependency "apktools"
|
33
36
|
end
|
data/test/helpers/consts.rb
CHANGED
@@ -1,4 +1,9 @@
|
|
1
1
|
module DelphiTests
|
2
2
|
PROJECT_PATH = File.expand_path('../../resources/testproject', __FILE__)
|
3
|
-
PROJECT_EXE = PROJECT_PATH + '/../../tmp/bin/%s/testproject.exe'
|
3
|
+
PROJECT_EXE = PROJECT_PATH + '/../../tmp/win32/bin/%s/testproject.exe'
|
4
|
+
end
|
5
|
+
|
6
|
+
module DelphiAndroidTests
|
7
|
+
PROJECT_PATH = File.expand_path('../../resources/testproject-android', __FILE__)
|
8
|
+
PROJECT_APK = PROJECT_PATH + '/../../tmp/android/bin/%s/TestProject.apk'
|
4
9
|
end
|
data/test/helpers/verinfo.rb
CHANGED
@@ -3,6 +3,17 @@ require 'test/unit'
|
|
3
3
|
require 'helpers/consts'
|
4
4
|
require 'rake/delphi/envvariables'
|
5
5
|
|
6
|
+
module Rake
|
7
|
+
module Delphi
|
8
|
+
class BDSVersionInfo
|
9
|
+
# override method
|
10
|
+
def self.encoding
|
11
|
+
'Windows-1251'
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
6
17
|
module DelphiTests
|
7
18
|
|
8
19
|
class TestVerInfo < Test::Unit::TestCase
|
@@ -18,6 +29,14 @@ protected
|
|
18
29
|
return true
|
19
30
|
end
|
20
31
|
|
32
|
+
def project_path
|
33
|
+
PROJECT_PATH
|
34
|
+
end
|
35
|
+
|
36
|
+
def project_name
|
37
|
+
PROJECT_EXE.pathmap('%n')
|
38
|
+
end
|
39
|
+
|
21
40
|
public
|
22
41
|
def setup
|
23
42
|
@saved_delphi_version = Rake::Delphi::EnvVariables.delphi_version
|
@@ -27,15 +46,15 @@ public
|
|
27
46
|
raise 'DELPHI_VERSION unknown (%s). Please update tests' \
|
28
47
|
% delphi_version \
|
29
48
|
unless template_ext
|
30
|
-
@ver_info_source =
|
31
|
-
@ver_info_file =
|
49
|
+
@ver_info_source = project_path.pathmap('%X%s') + project_name + '.' + template_ext
|
50
|
+
@ver_info_file = project_path.pathmap('%X%s') + project_name + template_ext.pathmap('%x')
|
32
51
|
|
33
52
|
FileUtils.cp(@ver_info_source, @ver_info_file) if prepare_ver_info_file?
|
34
53
|
end
|
35
54
|
|
36
55
|
def teardown
|
37
56
|
File.unlink(@ver_info_file) if @ver_info_file && prepare_ver_info_file?
|
38
|
-
ENV['DELPHI_VERSION'] = @saved_delphi_version
|
57
|
+
ENV['DELPHI_VERSION'] = @saved_delphi_version if @saved_delphi_version
|
39
58
|
end
|
40
59
|
end
|
41
60
|
|
@@ -0,0 +1,35 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- BEGIN_INCLUDE(manifest) -->
|
3
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
4
|
+
package="com.embarcadero.HelloWorld"
|
5
|
+
android:versionCode="<%=version.release_num%>"
|
6
|
+
android:versionName="<%=version%>">
|
7
|
+
|
8
|
+
<!-- This is the platform API where NativeActivity was introduced. -->
|
9
|
+
<uses-sdk android:minSdkVersion="9" />
|
10
|
+
|
11
|
+
<application android:persistent="False"
|
12
|
+
android:restoreAnyVersion="False"
|
13
|
+
android:label="HelloWorld"
|
14
|
+
android:installLocation="preferExternal"
|
15
|
+
android:debuggable="True"
|
16
|
+
android:largeHeap="False"
|
17
|
+
android:icon="@drawable/ic_launcher"
|
18
|
+
android:theme="@android:style/Theme.NoTitleBar">
|
19
|
+
<!-- Our activity is a subclass of the built-in NativeActivity framework class.
|
20
|
+
This will take care of integrating with our NDK code. -->
|
21
|
+
<activity android:name="com.embarcadero.firemonkey.FMXNativeActivity"
|
22
|
+
android:label="HelloWorld"
|
23
|
+
android:configChanges="orientation|keyboardHidden">
|
24
|
+
<!-- Tell NativeActivity the name of our .so -->
|
25
|
+
<meta-data android:name="android.app.lib_name"
|
26
|
+
android:value="<%=libname%>" />
|
27
|
+
<intent-filter>
|
28
|
+
<action android:name="android.intent.action.MAIN" />
|
29
|
+
<category android:name="android.intent.category.LAUNCHER" />
|
30
|
+
</intent-filter>
|
31
|
+
</activity>
|
32
|
+
<receiver android:name="com.embarcadero.firemonkey.notifications.FMXNotificationAlarm" />
|
33
|
+
</application>
|
34
|
+
</manifest>
|
35
|
+
<!-- END_INCLUDE(manifest) -->
|
@@ -0,0 +1,35 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- BEGIN_INCLUDE(manifest) -->
|
3
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
4
|
+
package="com.embarcadero.HelloWorld"
|
5
|
+
android:versionCode="2"
|
6
|
+
android:versionName="1.3.2.4">
|
7
|
+
|
8
|
+
<!-- This is the platform API where NativeActivity was introduced. -->
|
9
|
+
<uses-sdk android:minSdkVersion="9" />
|
10
|
+
|
11
|
+
<application android:persistent="False"
|
12
|
+
android:restoreAnyVersion="False"
|
13
|
+
android:label="HelloWorld"
|
14
|
+
android:installLocation="preferExternal"
|
15
|
+
android:debuggable="True"
|
16
|
+
android:largeHeap="False"
|
17
|
+
android:icon="@drawable/ic_launcher"
|
18
|
+
android:theme="@android:style/Theme.NoTitleBar">
|
19
|
+
<!-- Our activity is a subclass of the built-in NativeActivity framework class.
|
20
|
+
This will take care of integrating with our NDK code. -->
|
21
|
+
<activity android:name="com.embarcadero.firemonkey.FMXNativeActivity"
|
22
|
+
android:label="HelloWorld"
|
23
|
+
android:configChanges="orientation|keyboardHidden">
|
24
|
+
<!-- Tell NativeActivity the name of our .so -->
|
25
|
+
<meta-data android:name="android.app.lib_name"
|
26
|
+
android:value="TestProject" />
|
27
|
+
<intent-filter>
|
28
|
+
<action android:name="android.intent.action.MAIN" />
|
29
|
+
<category android:name="android.intent.category.LAUNCHER" />
|
30
|
+
</intent-filter>
|
31
|
+
</activity>
|
32
|
+
<receiver android:name="com.embarcadero.firemonkey.notifications.FMXNotificationAlarm" />
|
33
|
+
</application>
|
34
|
+
</manifest>
|
35
|
+
<!-- END_INCLUDE(manifest) -->
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# vim: set shiftwidth=2 tabstop=2 expandtab:
|
2
|
+
# encoding: utf-8
|
3
|
+
|
4
|
+
require 'rake'
|
5
|
+
require 'rake/delphi'
|
6
|
+
require 'rake/delphi/project'
|
7
|
+
|
8
|
+
if RAKEVERSION !~ /^0\.8/
|
9
|
+
require 'rake/dsl_definition'
|
10
|
+
include Rake::DSL
|
11
|
+
Rake::TaskManager.record_task_metadata = true if Rake::TaskManager.respond_to?('record_task_metadata')
|
12
|
+
end
|
13
|
+
|
14
|
+
module TestAndroidModule
|
15
|
+
PROJECT_NAME = 'Rake test project for Android'
|
16
|
+
PROJECT_FILE = 'TestProject'
|
17
|
+
|
18
|
+
task :default => 'test_android:compile'
|
19
|
+
|
20
|
+
namespace :test_android do
|
21
|
+
|
22
|
+
desc 'Compilation'
|
23
|
+
_task = task :compile do |t|
|
24
|
+
puts 'task %s executed' % t.name
|
25
|
+
end
|
26
|
+
|
27
|
+
desc 'Preparation'
|
28
|
+
task :prepare, :useresources, :options do |t, opts|
|
29
|
+
fail 'Cannot compile this project with Delphi below XE5' if ENV['DELPHI_VERSION'].to_i < 18
|
30
|
+
_task = Rake::Task['test_android:compile']
|
31
|
+
dpr = Rake.application.define_task(Rake::Delphi::Project, (_task.name + ':delphi').to_sym)
|
32
|
+
dpr[:resources_additional] = 'resources' if opts[:useresources]
|
33
|
+
dpr[:platform] = 'Android32'
|
34
|
+
# always use library path for Android
|
35
|
+
dpr[:uselibrarypath] = true
|
36
|
+
options = opts[:options] || {}
|
37
|
+
if options.kind_of?(String)
|
38
|
+
options = eval(options)
|
39
|
+
end
|
40
|
+
options.each do |k, v|
|
41
|
+
dpr[k] = v
|
42
|
+
end
|
43
|
+
dpr_vars = {}
|
44
|
+
dpr_vars[:bin_path] = options[:bin] || File.expand_path(File.dirname(__FILE__) + '/bin')
|
45
|
+
|
46
|
+
dpr_vars[:bin] = File.expand_path2(dpr_vars[:bin_path])
|
47
|
+
dpr.init(Module.nesting, File.expand_path(__FILE__), dpr_vars, 0)
|
48
|
+
|
49
|
+
directory dpr_vars[:bin_path]
|
50
|
+
_task.enhance [dpr_vars[:bin_path], dpr]
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
program TestProject;
|
2
|
+
|
3
|
+
uses
|
4
|
+
System.StartUpCopy,
|
5
|
+
FMX.MobilePreview,
|
6
|
+
FMX.Forms,
|
7
|
+
fmTest in 'fmTest.pas' {TestForm};
|
8
|
+
|
9
|
+
{$R *.res}
|
10
|
+
|
11
|
+
begin
|
12
|
+
Application.Initialize;
|
13
|
+
Application.CreateForm(TTestForm, TestForm);
|
14
|
+
Application.Run;
|
15
|
+
end.
|
@@ -0,0 +1,62 @@
|
|
1
|
+
#define VS_FF_DEBUG 0x00000001
|
2
|
+
#define VS_FF_PRERELEASE 0x00000002
|
3
|
+
#define VS_FF_PATCHED 0x00000004
|
4
|
+
#define VS_FF_PRIVATEBUILD 0x00000008
|
5
|
+
#define VS_FF_INFOINFERRED 0x00000010
|
6
|
+
#define VS_FF_SPECIALBUILD 0x00000020
|
7
|
+
|
8
|
+
#ifndef DEBUG
|
9
|
+
#define VER_DEBUG 0
|
10
|
+
#else
|
11
|
+
#define VER_DEBUG VS_FF_DEBUG
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#ifndef RC
|
15
|
+
#define VER_PRERELEASE 0
|
16
|
+
#else
|
17
|
+
#define VER_PRERELEASE VS_FF_PRERELEASE
|
18
|
+
#endif
|
19
|
+
|
20
|
+
|
21
|
+
#define _FILEFLAGS (VER_PRERELEASE|VER_DEBUG)
|
22
|
+
|
23
|
+
LANGUAGE 0x19, 0x01
|
24
|
+
#ifdef MAIN_ICON
|
25
|
+
MAINICON ICON "C:/cygwin/home/ashu/projects/MobileClientAlfaAuto/lib/rake-delphi/test/resources/testproject-android/TestProject.ico"
|
26
|
+
#endif
|
27
|
+
1 VERSIONINFO
|
28
|
+
FILEVERSION 1,3,2,4
|
29
|
+
PRODUCTVERSION 1,2,3,4
|
30
|
+
FILEOS 0x40004
|
31
|
+
FILETYPE 0x1
|
32
|
+
FILEFLAGSMASK _FILEFLAGS
|
33
|
+
FILEFLAGS _FILEFLAGS
|
34
|
+
BEGIN
|
35
|
+
BLOCK "StringFileInfo"
|
36
|
+
BEGIN
|
37
|
+
BLOCK "041904E3"
|
38
|
+
BEGIN
|
39
|
+
VALUE "CompanyName", "Rake\0"
|
40
|
+
VALUE "FileDescription", "Test rake-delphi project XE5 description\0"
|
41
|
+
VALUE "FileVersion", "1.3.2.4\0"
|
42
|
+
VALUE "InternalName", "testproject.exe\0"
|
43
|
+
VALUE "LegalCopyright", "Copyright. ��������\0"
|
44
|
+
VALUE "LegalTrademarks", "Trademark. �������� �����\0"
|
45
|
+
VALUE "OriginalFilename", "testproject.exe\0"
|
46
|
+
VALUE "ProductName", "Test rake-delphi project XE5 product name\0"
|
47
|
+
VALUE "ProductVersion", "1.2.3.4\0"
|
48
|
+
VALUE "Comments", "Test project comment\0"
|
49
|
+
#ifdef DEBUG
|
50
|
+
VALUE "DebugBuild", "DebugBuild\0"
|
51
|
+
#endif
|
52
|
+
#ifdef RC
|
53
|
+
VALUE "ReleaseCandidate", "\0"
|
54
|
+
#endif
|
55
|
+
END
|
56
|
+
END
|
57
|
+
|
58
|
+
BLOCK "VarFileInfo"
|
59
|
+
BEGIN
|
60
|
+
VALUE "Translation", 0x0419 0x04E3
|
61
|
+
END
|
62
|
+
END
|
Binary file
|
@@ -0,0 +1,373 @@
|
|
1
|
+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2
|
+
<PropertyGroup>
|
3
|
+
<ProjectGuid>{DA68AC3A-ED17-40B1-9EBF-A465265DB849}</ProjectGuid>
|
4
|
+
<ProjectVersion>15.3</ProjectVersion>
|
5
|
+
<FrameworkType>FMX</FrameworkType>
|
6
|
+
<MainSource>TestProject.dpr</MainSource>
|
7
|
+
<Base>True</Base>
|
8
|
+
<Config Condition="'$(Config)'==''">Debug</Config>
|
9
|
+
<Platform Condition="'$(Platform)'==''">Android</Platform>
|
10
|
+
<TargetedPlatforms>88</TargetedPlatforms>
|
11
|
+
<AppType>Application</AppType>
|
12
|
+
</PropertyGroup>
|
13
|
+
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
|
14
|
+
<Base>true</Base>
|
15
|
+
</PropertyGroup>
|
16
|
+
<PropertyGroup Condition="('$(Platform)'=='Android' and '$(Base)'=='true') or '$(Base_Android)'!=''">
|
17
|
+
<Base_Android>true</Base_Android>
|
18
|
+
<CfgParent>Base</CfgParent>
|
19
|
+
<Base>true</Base>
|
20
|
+
</PropertyGroup>
|
21
|
+
<PropertyGroup Condition="('$(Platform)'=='iOSDevice' and '$(Base)'=='true') or '$(Base_iOSDevice)'!=''">
|
22
|
+
<Base_iOSDevice>true</Base_iOSDevice>
|
23
|
+
<CfgParent>Base</CfgParent>
|
24
|
+
<Base>true</Base>
|
25
|
+
</PropertyGroup>
|
26
|
+
<PropertyGroup Condition="('$(Platform)'=='iOSSimulator' and '$(Base)'=='true') or '$(Base_iOSSimulator)'!=''">
|
27
|
+
<Base_iOSSimulator>true</Base_iOSSimulator>
|
28
|
+
<CfgParent>Base</CfgParent>
|
29
|
+
<Base>true</Base>
|
30
|
+
</PropertyGroup>
|
31
|
+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
|
32
|
+
<Base_Win32>true</Base_Win32>
|
33
|
+
<CfgParent>Base</CfgParent>
|
34
|
+
<Base>true</Base>
|
35
|
+
</PropertyGroup>
|
36
|
+
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
|
37
|
+
<Cfg_1>true</Cfg_1>
|
38
|
+
<CfgParent>Base</CfgParent>
|
39
|
+
<Base>true</Base>
|
40
|
+
</PropertyGroup>
|
41
|
+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
|
42
|
+
<Cfg_1_Win32>true</Cfg_1_Win32>
|
43
|
+
<CfgParent>Cfg_1</CfgParent>
|
44
|
+
<Cfg_1>true</Cfg_1>
|
45
|
+
<Base>true</Base>
|
46
|
+
</PropertyGroup>
|
47
|
+
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
|
48
|
+
<Cfg_2>true</Cfg_2>
|
49
|
+
<CfgParent>Base</CfgParent>
|
50
|
+
<Base>true</Base>
|
51
|
+
</PropertyGroup>
|
52
|
+
<PropertyGroup Condition="'$(Base)'!=''">
|
53
|
+
<AUP_ACCESS_COARSE_LOCATION>true</AUP_ACCESS_COARSE_LOCATION>
|
54
|
+
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace)</DCC_Namespace>
|
55
|
+
<AUP_CALL_PHONE>true</AUP_CALL_PHONE>
|
56
|
+
<AUP_WRITE_CALENDAR>true</AUP_WRITE_CALENDAR>
|
57
|
+
<AUP_READ_EXTERNAL_STORAGE>true</AUP_READ_EXTERNAL_STORAGE>
|
58
|
+
<AUP_READ_PHONE_STATE>true</AUP_READ_PHONE_STATE>
|
59
|
+
<AUP_INTERNET>true</AUP_INTERNET>
|
60
|
+
<AUP_WRITE_EXTERNAL_STORAGE>true</AUP_WRITE_EXTERNAL_STORAGE>
|
61
|
+
<AUP_READ_CALENDAR>true</AUP_READ_CALENDAR>
|
62
|
+
<AUP_ACCESS_FINE_LOCATION>true</AUP_ACCESS_FINE_LOCATION>
|
63
|
+
<AUP_CAMERA>true</AUP_CAMERA>
|
64
|
+
<DCC_DcuOutput>.\$(Platform)\$(Config)</DCC_DcuOutput>
|
65
|
+
<DCC_ExeOutput>.\$(Platform)\$(Config)</DCC_ExeOutput>
|
66
|
+
<DCC_E>false</DCC_E>
|
67
|
+
<DCC_N>false</DCC_N>
|
68
|
+
<DCC_S>false</DCC_S>
|
69
|
+
<DCC_F>false</DCC_F>
|
70
|
+
<DCC_K>false</DCC_K>
|
71
|
+
</PropertyGroup>
|
72
|
+
<PropertyGroup Condition="'$(Base_Android)'!=''">
|
73
|
+
<Android_LauncherIcon72>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_72x72.png</Android_LauncherIcon72>
|
74
|
+
<Android_LauncherIcon96>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_96x96.png</Android_LauncherIcon96>
|
75
|
+
<Android_LauncherIcon48>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_48x48.png</Android_LauncherIcon48>
|
76
|
+
<Android_LauncherIcon144>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_144x144.png</Android_LauncherIcon144>
|
77
|
+
<BT_BuildType>Debug</BT_BuildType>
|
78
|
+
<DCC_UsePackage>FireDACSqliteDriver;bindcompfmx;DBXSqliteDriver;fmx;rtl;dbrtl;DbxClientDriver;IndySystem;FireDACCommon;bindcomp;DBXInterBaseDriver;DataSnapCommon;xmlrtl;ibxpress;DbxCommonDriver;IndyProtocols;dbxcds;FireDACCommonDriver;bindengine;soaprtl;bindcompdbx;FMXTee;fmxFireDAC;CustomIPTransport;FireDAC;dsnap;IndyCore;IndyIPCommon;CloudService;FireDACIBDriver;FmxTeeUI;inet;RESTComponents;dbexpress;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
79
|
+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
80
|
+
<VerInfo_Keys>package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=preferExternal;largeHeap=False;theme=TitleBar</VerInfo_Keys>
|
81
|
+
<Android_LauncherIcon36>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_36x36.png</Android_LauncherIcon36>
|
82
|
+
</PropertyGroup>
|
83
|
+
<PropertyGroup Condition="'$(Base_iOSDevice)'!=''">
|
84
|
+
<iPad_AppIcon152>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_152x152.png</iPad_AppIcon152>
|
85
|
+
<iPad_SpotLight100>$(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_100x100.png</iPad_SpotLight100>
|
86
|
+
<iPhone_AppIcon57>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_57x57.png</iPhone_AppIcon57>
|
87
|
+
<iPhone_AppIcon60>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_60x60.png</iPhone_AppIcon60>
|
88
|
+
<iPad_Launch1536x2048>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_1536x2048.png</iPad_Launch1536x2048>
|
89
|
+
<iPhone_Spotlight80>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_80x80.png</iPhone_Spotlight80>
|
90
|
+
<iPad_Launch768>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_768x1004.png</iPad_Launch768>
|
91
|
+
<iPad_Launch2048x1536>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2048x1536.png</iPad_Launch2048x1536>
|
92
|
+
<iPhone_Launch640>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_640x960.png</iPhone_Launch640>
|
93
|
+
<iPad_SpotLight80>$(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_80x80.png</iPad_SpotLight80>
|
94
|
+
<iPad_Launch768x1024>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_768x1024.png</iPad_Launch768x1024>
|
95
|
+
<iPad_SpotLight40>$(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_40x40.png</iPad_SpotLight40>
|
96
|
+
<iPad_SpotLight50>$(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_50x50.png</iPad_SpotLight50>
|
97
|
+
<VerInfo_BundleId>$(MSBuildProjectName)</VerInfo_BundleId>
|
98
|
+
<iPhone_Launch320>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_320x480.png</iPhone_Launch320>
|
99
|
+
<iPhone_Spotlight40>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_40x40.png</iPhone_Spotlight40>
|
100
|
+
<iPad_Setting29>$(BDS)\bin\Artwork\iOS\iPad\FM_SettingIcon_29x29.png</iPad_Setting29>
|
101
|
+
<iPad_AppIcon144>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_144x144.png</iPad_AppIcon144>
|
102
|
+
<iPhone_Spotlight58>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_58x58.png</iPhone_Spotlight58>
|
103
|
+
<iPad_AppIcon76>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_76x76.png</iPad_AppIcon76>
|
104
|
+
<DCC_UsePackage>FireDACSqliteDriver;bindcompfmx;DBXSqliteDriver;fmx;rtl;dbrtl;DbxClientDriver;IndySystem;FireDACCommon;bindcomp;DBXInterBaseDriver;DataSnapCommon;xmlrtl;ibxpress;DbxCommonDriver;IndyProtocols;dbxcds;FireDACCommonDriver;bindengine;soaprtl;bindcompdbx;FMXTee;fmxFireDAC;CustomIPTransport;FireDAC;dsnap;fmxase;IndyCore;IndyIPCommon;CloudService;FireDACIBDriver;FmxTeeUI;inet;RESTComponents;dbexpress;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
105
|
+
<iPhone_AppIcon114>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_114x114.png</iPhone_AppIcon114>
|
106
|
+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
107
|
+
<iPad_Launch1024x768>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_1024x768.png</iPad_Launch1024x768>
|
108
|
+
<VerInfo_UIDeviceFamily>iPhoneAndiPad</VerInfo_UIDeviceFamily>
|
109
|
+
<iPad_Launch1024>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_1024x748.png</iPad_Launch1024>
|
110
|
+
<VerInfo_Keys>CFBundleName=$(MSBuildProjectName);CFBundleDevelopmentRegion=en;CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleInfoDictionaryVersion=6.0;CFBundleVersion=1.0.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;LSRequiresIPhoneOS=true;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);UIDeviceFamily=iPhone & iPad;CFBundleResourceSpecification=ResourceRules.plist</VerInfo_Keys>
|
111
|
+
<iPad_AppIcon72>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_72x72.png</iPad_AppIcon72>
|
112
|
+
<iPhone_Launch640x1136>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_640x1136.png</iPhone_Launch640x1136>
|
113
|
+
<iPad_Launch1536>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_1536x2008.png</iPad_Launch1536>
|
114
|
+
<iPad_Setting58>$(BDS)\bin\Artwork\iOS\iPad\FM_SettingIcon_58x58.png</iPad_Setting58>
|
115
|
+
<iPad_Launch2048>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2048x1496.png</iPad_Launch2048>
|
116
|
+
<BT_BuildType>Debug</BT_BuildType>
|
117
|
+
<iPhone_Spotlight29>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_29x29.png</iPhone_Spotlight29>
|
118
|
+
<iPhone_AppIcon120>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_120x120.png</iPhone_AppIcon120>
|
119
|
+
</PropertyGroup>
|
120
|
+
<PropertyGroup Condition="'$(Base_iOSSimulator)'!=''">
|
121
|
+
<iPad_AppIcon152>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_152x152.png</iPad_AppIcon152>
|
122
|
+
<iPad_SpotLight100>$(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_100x100.png</iPad_SpotLight100>
|
123
|
+
<iPhone_AppIcon57>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_57x57.png</iPhone_AppIcon57>
|
124
|
+
<iPhone_AppIcon60>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_60x60.png</iPhone_AppIcon60>
|
125
|
+
<iPad_Launch1536x2048>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_1536x2048.png</iPad_Launch1536x2048>
|
126
|
+
<iPhone_Spotlight80>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_80x80.png</iPhone_Spotlight80>
|
127
|
+
<iPad_Launch768>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_768x1004.png</iPad_Launch768>
|
128
|
+
<iPad_Launch2048x1536>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2048x1536.png</iPad_Launch2048x1536>
|
129
|
+
<iPad_SpotLight80>$(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_80x80.png</iPad_SpotLight80>
|
130
|
+
<iPad_Launch768x1024>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_768x1024.png</iPad_Launch768x1024>
|
131
|
+
<iPad_SpotLight40>$(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_40x40.png</iPad_SpotLight40>
|
132
|
+
<iPad_SpotLight50>$(BDS)\bin\Artwork\iOS\iPad\FM_SpotlightSearchIcon_50x50.png</iPad_SpotLight50>
|
133
|
+
<iPhone_Launch320>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_320x480.png</iPhone_Launch320>
|
134
|
+
<iPhone_Launch640>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_640x960.png</iPhone_Launch640>
|
135
|
+
<iPhone_Spotlight40>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_40x40.png</iPhone_Spotlight40>
|
136
|
+
<iPad_Setting29>$(BDS)\bin\Artwork\iOS\iPad\FM_SettingIcon_29x29.png</iPad_Setting29>
|
137
|
+
<iPad_AppIcon144>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_144x144.png</iPad_AppIcon144>
|
138
|
+
<iPhone_Spotlight58>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_58x58.png</iPhone_Spotlight58>
|
139
|
+
<iPad_AppIcon76>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_76x76.png</iPad_AppIcon76>
|
140
|
+
<DCC_UsePackage>FireDACSqliteDriver;bindcompfmx;DBXSqliteDriver;fmx;rtl;dbrtl;DbxClientDriver;IndySystem;FireDACCommon;bindcomp;DBXInterBaseDriver;DataSnapCommon;xmlrtl;ibxpress;DbxCommonDriver;IndyProtocols;dbxcds;FireDACCommonDriver;bindengine;soaprtl;bindcompdbx;FMXTee;fmxFireDAC;CustomIPTransport;FireDAC;dsnap;fmxase;IndyCore;IndyIPCommon;CloudService;FireDACIBDriver;FmxTeeUI;inet;RESTComponents;dbexpress;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
141
|
+
<iPhone_AppIcon114>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_114x114.png</iPhone_AppIcon114>
|
142
|
+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
143
|
+
<iPad_Launch1024x768>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_1024x768.png</iPad_Launch1024x768>
|
144
|
+
<VerInfo_UIDeviceFamily>iPhoneAndiPad</VerInfo_UIDeviceFamily>
|
145
|
+
<iPad_Launch1024>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_1024x748.png</iPad_Launch1024>
|
146
|
+
<iPad_AppIcon72>$(BDS)\bin\Artwork\iOS\iPad\FM_ApplicationIcon_72x72.png</iPad_AppIcon72>
|
147
|
+
<iPhone_Launch640x1136>$(BDS)\bin\Artwork\iOS\iPhone\FM_LaunchImage_640x1136.png</iPhone_Launch640x1136>
|
148
|
+
<iPad_Launch1536>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImagePortrait_1536x2008.png</iPad_Launch1536>
|
149
|
+
<iPad_Setting58>$(BDS)\bin\Artwork\iOS\iPad\FM_SettingIcon_58x58.png</iPad_Setting58>
|
150
|
+
<iPad_Launch2048>$(BDS)\bin\Artwork\iOS\iPad\FM_LaunchImageLandscape_2048x1496.png</iPad_Launch2048>
|
151
|
+
<VerInfo_Keys>CFBundleName=$(MSBuildProjectName);CFBundleDevelopmentRegion=en;CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleInfoDictionaryVersion=6.0;CFBundleVersion=1.0.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;LSRequiresIPhoneOS=true;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);UIDeviceFamily=iPhone & iPad;CFBundleResourceSpecification=ResourceRules.plist</VerInfo_Keys>
|
152
|
+
<iPhone_Spotlight29>$(BDS)\bin\Artwork\iOS\iPhone\FM_SpotlightSearchIcon_29x29.png</iPhone_Spotlight29>
|
153
|
+
<iPhone_AppIcon120>$(BDS)\bin\Artwork\iOS\iPhone\FM_ApplicationIcon_120x120.png</iPhone_AppIcon120>
|
154
|
+
</PropertyGroup>
|
155
|
+
<PropertyGroup Condition="'$(Base_Win32)'!=''">
|
156
|
+
<DCC_UsePackage>DataAbstract_SpiderMonkeyScripting_D19;DataAbstract_DBXDriver_Pro_D19;FireDACASADriver;FireDACSqliteDriver;bindcompfmx;OverbyteIcsDXE5Run;DBXSqliteDriver;vcldbx;FireDACPgDriver;FireDACODBCDriver;fmx;rtl;dbrtl;DbxClientDriver;IndySystem;FireDACCommon;bindcomp;TeeDB;DataStorageXE5;RemObjects_WebBroker_D19;vclib;inetdbbde;DBXInterBaseDriver;Tee;DataSnapCommon;RemObjects_Synapse_D19;DataAbstract_DBXDriver_Enterprise_D19;vclFireDAC;xmlrtl;svnui;ibxpress;DbxCommonDriver;vclimg;IndyProtocols;dbxcds;DBXMySQLDriver;FireDACCommonDriver;MetropolisUILiveTile;DataAbstract_ActiveScripting_D19;bindengine;vclactnband;vcldb;soaprtl;bindcompdbx;vcldsnap;bindcompvcl;FMXTee;TeeUI;vclie;DataAbstract_SQLiteDriver_D19;fmxFireDAC;FireDACADSDriver;vcltouch;CustomIPTransport;vclribbon;VclSmp;FireDAC;dsnap;IndyIPServer;Intraweb;fmxase;vcl;IndyCore;VCLRESTComponents;RemObjects_Indy_D19;IndyIPCommon;CloudService;CodeSiteExpressPkg;dsnapcon;FireDACIBDriver;FmxTeeUI;inet;fmxobj;FireDACMySQLDriver;vclx;inetdbxpress;webdsnap;svn;fmxdae;RESTComponents;bdertl;LabelSkinXE5;DataAbstract_IDE_D19;FireDACMSAccDriver;adortl;dbexpress;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
157
|
+
</PropertyGroup>
|
158
|
+
<PropertyGroup Condition="'$(Cfg_1)'!=''">
|
159
|
+
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
|
160
|
+
<DCC_DebugDCUs>true</DCC_DebugDCUs>
|
161
|
+
<DCC_Optimize>false</DCC_Optimize>
|
162
|
+
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
|
163
|
+
<DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
|
164
|
+
<DCC_RemoteDebug>true</DCC_RemoteDebug>
|
165
|
+
</PropertyGroup>
|
166
|
+
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
|
167
|
+
<DCC_RemoteDebug>false</DCC_RemoteDebug>
|
168
|
+
</PropertyGroup>
|
169
|
+
<PropertyGroup Condition="'$(Cfg_2)'!=''">
|
170
|
+
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
|
171
|
+
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
|
172
|
+
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
|
173
|
+
<DCC_DebugInformation>0</DCC_DebugInformation>
|
174
|
+
</PropertyGroup>
|
175
|
+
<ItemGroup>
|
176
|
+
<DelphiCompile Include="$(MainSource)">
|
177
|
+
<MainSource>MainSource</MainSource>
|
178
|
+
</DelphiCompile>
|
179
|
+
<DCCReference Include="fmTest.pas">
|
180
|
+
<Form>Form3</Form>
|
181
|
+
<FormType>fmx</FormType>
|
182
|
+
</DCCReference>
|
183
|
+
<BuildConfiguration Include="Release">
|
184
|
+
<Key>Cfg_2</Key>
|
185
|
+
<CfgParent>Base</CfgParent>
|
186
|
+
</BuildConfiguration>
|
187
|
+
<BuildConfiguration Include="Base">
|
188
|
+
<Key>Base</Key>
|
189
|
+
</BuildConfiguration>
|
190
|
+
<BuildConfiguration Include="Debug">
|
191
|
+
<Key>Cfg_1</Key>
|
192
|
+
<CfgParent>Base</CfgParent>
|
193
|
+
</BuildConfiguration>
|
194
|
+
</ItemGroup>
|
195
|
+
<ProjectExtensions>
|
196
|
+
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
197
|
+
<Borland.ProjectType/>
|
198
|
+
<BorlandProject>
|
199
|
+
<Delphi.Personality>
|
200
|
+
<VersionInfo>
|
201
|
+
<VersionInfo Name="IncludeVerInfo">False</VersionInfo>
|
202
|
+
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
203
|
+
<VersionInfo Name="MajorVer">1</VersionInfo>
|
204
|
+
<VersionInfo Name="MinorVer">0</VersionInfo>
|
205
|
+
<VersionInfo Name="Release">0</VersionInfo>
|
206
|
+
<VersionInfo Name="Build">0</VersionInfo>
|
207
|
+
<VersionInfo Name="Debug">False</VersionInfo>
|
208
|
+
<VersionInfo Name="PreRelease">False</VersionInfo>
|
209
|
+
<VersionInfo Name="Special">False</VersionInfo>
|
210
|
+
<VersionInfo Name="Private">False</VersionInfo>
|
211
|
+
<VersionInfo Name="DLL">False</VersionInfo>
|
212
|
+
<VersionInfo Name="Locale">1049</VersionInfo>
|
213
|
+
<VersionInfo Name="CodePage">1251</VersionInfo>
|
214
|
+
</VersionInfo>
|
215
|
+
<VersionInfoKeys>
|
216
|
+
<VersionInfoKeys Name="CompanyName">Rake</VersionInfoKeys>
|
217
|
+
<VersionInfoKeys Name="FileDescription">Test rake-delphi project XE5 description</VersionInfoKeys>
|
218
|
+
<VersionInfoKeys Name="FileVersion">4.3.2.1</VersionInfoKeys>
|
219
|
+
<VersionInfoKeys Name="InternalName">testproject.exe</VersionInfoKeys>
|
220
|
+
<VersionInfoKeys Name="LegalCopyright">Copyright. Копирайт</VersionInfoKeys>
|
221
|
+
<VersionInfoKeys Name="LegalTrademarks">Trademark. Торговая марка</VersionInfoKeys>
|
222
|
+
<VersionInfoKeys Name="OriginalFilename">testproject.exe</VersionInfoKeys>
|
223
|
+
<VersionInfoKeys Name="ProductName">Test rake-delphi project XE5 product name</VersionInfoKeys>
|
224
|
+
<VersionInfoKeys Name="ProductVersion">1.2.3.4</VersionInfoKeys>
|
225
|
+
<VersionInfoKeys Name="Comments">Test project comment</VersionInfoKeys>
|
226
|
+
<VersionInfoKeys Name="CFBundleName"/>
|
227
|
+
<VersionInfoKeys Name="CFBundleDisplayName"/>
|
228
|
+
<VersionInfoKeys Name="UIDeviceFamily"/>
|
229
|
+
<VersionInfoKeys Name="CFBundleIdentifier"/>
|
230
|
+
<VersionInfoKeys Name="CFBundleVersion"/>
|
231
|
+
<VersionInfoKeys Name="CFBundlePackageType"/>
|
232
|
+
<VersionInfoKeys Name="CFBundleSignature"/>
|
233
|
+
<VersionInfoKeys Name="CFBundleAllowMixedLocalizations"/>
|
234
|
+
<VersionInfoKeys Name="UISupportedInterfaceOrientations"/>
|
235
|
+
<VersionInfoKeys Name="CFBundleExecutable"/>
|
236
|
+
<VersionInfoKeys Name="CFBundleResourceSpecification"/>
|
237
|
+
<VersionInfoKeys Name="LSRequiresIPhoneOS"/>
|
238
|
+
<VersionInfoKeys Name="CFBundleInfoDictionaryVersion"/>
|
239
|
+
<VersionInfoKeys Name="CFBundleDevelopmentRegion"/>
|
240
|
+
<VersionInfoKeys Name="package"/>
|
241
|
+
<VersionInfoKeys Name="label"/>
|
242
|
+
<VersionInfoKeys Name="versionCode"/>
|
243
|
+
<VersionInfoKeys Name="versionName"/>
|
244
|
+
<VersionInfoKeys Name="persistent"/>
|
245
|
+
<VersionInfoKeys Name="restoreAnyVersion"/>
|
246
|
+
<VersionInfoKeys Name="installLocation"/>
|
247
|
+
<VersionInfoKeys Name="largeHeap"/>
|
248
|
+
<VersionInfoKeys Name="theme"/>
|
249
|
+
</VersionInfoKeys>
|
250
|
+
<Source>
|
251
|
+
<Source Name="MainSource">TestProject.dpr</Source>
|
252
|
+
</Source>
|
253
|
+
</Delphi.Personality>
|
254
|
+
<Deployment>
|
255
|
+
<DeployFile LocalName="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\prebuilt\android-arm\gdbserver\gdbserver" Configuration="Debug" Class="AndroidGDBServer">
|
256
|
+
<Platform Name="Android"/>
|
257
|
+
</DeployFile>
|
258
|
+
<DeployFile LocalName="Android\Debug\AndroidManifest.xml" Configuration="Debug" Class="ProjectAndroidManifest">
|
259
|
+
<Platform Name="Android"/>
|
260
|
+
</DeployFile>
|
261
|
+
<DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_LauncherIcon_144x144.png" Configuration="Debug" Class="Android_LauncherIcon144">
|
262
|
+
<Platform Name="Android">
|
263
|
+
<RemoteName>ic_launcher.png</RemoteName>
|
264
|
+
</Platform>
|
265
|
+
</DeployFile>
|
266
|
+
<DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_LauncherIcon_72x72.png" Configuration="Debug" Class="Android_LauncherIcon72">
|
267
|
+
<Platform Name="Android">
|
268
|
+
<RemoteName>ic_launcher.png</RemoteName>
|
269
|
+
</Platform>
|
270
|
+
</DeployFile>
|
271
|
+
<DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_LauncherIcon_96x96.png" Configuration="Debug" Class="Android_LauncherIcon96">
|
272
|
+
<Platform Name="Android">
|
273
|
+
<RemoteName>ic_launcher.png</RemoteName>
|
274
|
+
</Platform>
|
275
|
+
</DeployFile>
|
276
|
+
<DeployFile LocalName="Android\Debug\libTestProject.so" Configuration="Debug" Class="ProjectOutput">
|
277
|
+
<Platform Name="Android"/>
|
278
|
+
</DeployFile>
|
279
|
+
<DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_LauncherIcon_36x36.png" Configuration="Debug" Class="Android_LauncherIcon36">
|
280
|
+
<Platform Name="Android">
|
281
|
+
<RemoteName>ic_launcher.png</RemoteName>
|
282
|
+
</Platform>
|
283
|
+
</DeployFile>
|
284
|
+
<DeployFile LocalName="c:\program files (x86)\embarcadero\rad studio\12.0\lib\android\debug\classes.dex" Configuration="Debug" Class="AndroidClassesDexFile">
|
285
|
+
<Platform Name="Android">
|
286
|
+
<RemoteName>classes.dex</RemoteName>
|
287
|
+
</Platform>
|
288
|
+
</DeployFile>
|
289
|
+
<DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_LauncherIcon_48x48.png" Configuration="Debug" Class="Android_LauncherIcon48">
|
290
|
+
<Platform Name="Android">
|
291
|
+
<RemoteName>ic_launcher.png</RemoteName>
|
292
|
+
</Platform>
|
293
|
+
</DeployFile>
|
294
|
+
<DeployClass Name="AndroidGDBServer">
|
295
|
+
<Platform Name="Android">
|
296
|
+
<RemoteDir>library\lib\armeabi</RemoteDir>
|
297
|
+
<Operation>1</Operation>
|
298
|
+
</Platform>
|
299
|
+
</DeployClass>
|
300
|
+
<DeployClass Name="Android_LauncherIcon96">
|
301
|
+
<Platform Name="Android">
|
302
|
+
<RemoteDir>res\drawable-xhdpi</RemoteDir>
|
303
|
+
<Operation>1</Operation>
|
304
|
+
</Platform>
|
305
|
+
</DeployClass>
|
306
|
+
<DeployClass Name="Android_LauncherIcon144">
|
307
|
+
<Platform Name="Android">
|
308
|
+
<RemoteDir>res\drawable-xxhdpi</RemoteDir>
|
309
|
+
<Operation>1</Operation>
|
310
|
+
</Platform>
|
311
|
+
</DeployClass>
|
312
|
+
<DeployClass Name="AndroidClassesDexFile">
|
313
|
+
<Platform Name="Android">
|
314
|
+
<RemoteDir>classes</RemoteDir>
|
315
|
+
<Operation>1</Operation>
|
316
|
+
</Platform>
|
317
|
+
</DeployClass>
|
318
|
+
<DeployClass Name="Android_DefaultAppIcon">
|
319
|
+
<Platform Name="Android">
|
320
|
+
<RemoteDir>res\drawable</RemoteDir>
|
321
|
+
<Operation>1</Operation>
|
322
|
+
</Platform>
|
323
|
+
</DeployClass>
|
324
|
+
<DeployClass Required="true" Name="ProjectOutput">
|
325
|
+
<Platform Name="Android">
|
326
|
+
<RemoteDir>library\lib\armeabi</RemoteDir>
|
327
|
+
<Operation>1</Operation>
|
328
|
+
</Platform>
|
329
|
+
<Platform Name="Win32">
|
330
|
+
<Operation>0</Operation>
|
331
|
+
</Platform>
|
332
|
+
</DeployClass>
|
333
|
+
<DeployClass Name="File">
|
334
|
+
<Platform Name="iOSDevice">
|
335
|
+
<Operation>0</Operation>
|
336
|
+
</Platform>
|
337
|
+
<Platform Name="Android">
|
338
|
+
<Operation>0</Operation>
|
339
|
+
</Platform>
|
340
|
+
<Platform Name="Win32">
|
341
|
+
<Operation>0</Operation>
|
342
|
+
</Platform>
|
343
|
+
</DeployClass>
|
344
|
+
<DeployClass Name="Android_LauncherIcon36">
|
345
|
+
<Platform Name="Android">
|
346
|
+
<RemoteDir>res\drawable-ldpi</RemoteDir>
|
347
|
+
<Operation>1</Operation>
|
348
|
+
</Platform>
|
349
|
+
</DeployClass>
|
350
|
+
<DeployClass Name="Android_LauncherIcon48">
|
351
|
+
<Platform Name="Android">
|
352
|
+
<RemoteDir>res\drawable-mdpi</RemoteDir>
|
353
|
+
<Operation>1</Operation>
|
354
|
+
</Platform>
|
355
|
+
</DeployClass>
|
356
|
+
<DeployClass Name="Android_LauncherIcon72">
|
357
|
+
<Platform Name="Android">
|
358
|
+
<RemoteDir>res\drawable-hdpi</RemoteDir>
|
359
|
+
<Operation>1</Operation>
|
360
|
+
</Platform>
|
361
|
+
</DeployClass>
|
362
|
+
<DeployClass Name="ProjectAndroidManifest">
|
363
|
+
<Platform Name="Android">
|
364
|
+
<Operation>1</Operation>
|
365
|
+
</Platform>
|
366
|
+
</DeployClass>
|
367
|
+
</Deployment>
|
368
|
+
</BorlandProject>
|
369
|
+
<ProjectFileVersion>12</ProjectFileVersion>
|
370
|
+
</ProjectExtensions>
|
371
|
+
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
|
372
|
+
<Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
|
373
|
+
</Project>
|