diff options
Diffstat (limited to 'plugins/Utils.pas/make.bat')
-rw-r--r-- | plugins/Utils.pas/make.bat | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/Utils.pas/make.bat b/plugins/Utils.pas/make.bat new file mode 100644 index 0000000000..39a182dae2 --- /dev/null +++ b/plugins/Utils.pas/make.bat @@ -0,0 +1,14 @@ +@echo off
+set myopts=
+
+if /i '%2' == 'fpc' (
+ ..\FPC\bin\fpc.exe %myopts% %1 %3 %4 %5 %6 %7 %8 %9
+) else if /i '%2' == 'fpc64' (
+ ..\FPC\bin64\ppcrossx64.exe %myopts% %1 %3 %4 %5 %6 %7 %8 %9
+) else if /i '%2' == 'xe2' (
+ ..\XE2\bin\dcc32.exe %myopts% %1 %3 %4 %5 %6 %7 %8 %9
+) else if /i '%2' == 'xe64' (
+ ..\XE2\bin\dcc64.exe %myopts% %1 %3 %4 %5 %6 %7 %8 %9
+) else (
+ ..\delphi\dcc32 %myopts% %1 %2 %3 %4 %5 %6 %7 %8 %9
+)
|