summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dbx_mmap_SA/Cryptors/Athena/How to build Athena.txt8
-rw-r--r--Dbx_mmap_SA/Cryptors/Athena/make.bat6
2 files changed, 11 insertions, 3 deletions
diff --git a/Dbx_mmap_SA/Cryptors/Athena/How to build Athena.txt b/Dbx_mmap_SA/Cryptors/Athena/How to build Athena.txt
index 9f8a0ab..deae9e7 100644
--- a/Dbx_mmap_SA/Cryptors/Athena/How to build Athena.txt
+++ b/Dbx_mmap_SA/Cryptors/Athena/How to build Athena.txt
@@ -1,7 +1,11 @@
-1. Obtain sources from the http://delphi-miranda-plugins.googlecode.com/svn/trunk with your favorite SVN client.
+1. Obtain sources from http://delphi-miranda-plugins.googlecode.com/svn/trunk with your favorite SVN client.
2. Copy Athena folder to the root directory of the abovementioned sources.
3. Open Command prompt, navigate to Athena folder.
-4. Type "make" (without quotes) to build with Delphi, "make fpc" to build Free Pascal 32-bit version, "make fpc64" to build Free Pascal 64-bit version. \ No newline at end of file
+4. Type: "make" (without quotes) - to build 32-bit version with Delphi 5,
+ "make fpc" - to build Free Pascal 32-bit version,
+ "make fpc64" - to build Free Pascal 64-bit version,
+ "make xe2" - to build Delphi XE2 32-bit version,
+ "make xe64" - to build Delphi XE2 64-bit version. \ No newline at end of file
diff --git a/Dbx_mmap_SA/Cryptors/Athena/make.bat b/Dbx_mmap_SA/Cryptors/Athena/make.bat
index e847eff..bccf7a7 100644
--- a/Dbx_mmap_SA/Cryptors/Athena/make.bat
+++ b/Dbx_mmap_SA/Cryptors/Athena/make.bat
@@ -4,6 +4,10 @@ if /i '%1' == 'fpc' (
..\FPC\bin\fpc.exe athena.dpr %2 %3 %4 %5 %6 %7 %8 %9
) else if /i '%1' == 'fpc64' (
..\FPC\bin64\ppcrossx64.exe athena.dpr %2 %3 %4 %5 %6 %7 %8 %9
+) else if /i '%1' == 'xe2' (
+ ..\XE2\BIN\dcc32.exe athena.dpr %2 %3 %4 %5 %6 %7 %8 %9
+) else if /i '%1' == 'xe64' (
+ ..\XE2\BIN\dcc64.exe athena.dpr %2 %3 %4 %5 %6 %7 %8 %9
) else (
..\delphi\dcc32 athena.dpr %1 %2 %3 %4 %5 %6 %7 %8 %9
-)
+) \ No newline at end of file