summaryrefslogtreecommitdiff
path: root/plugins/ShlExt
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-10-08 20:55:40 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-10-08 20:55:40 +0000
commitd7f4819e75de560d7ebb8d4c9e9c1bc4f6b55606 (patch)
tree784da594e135d3131bd74208c427bc880cf32331 /plugins/ShlExt
parent86ae6a950c4843bdefde0100df840f27be8ca911 (diff)
pascal compilation fixes (may need adjustment)
git-svn-id: http://svn.miranda-ng.org/main/trunk@1827 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ShlExt')
-rw-r--r--plugins/ShlExt/make.bat9
1 files changed, 7 insertions, 2 deletions
diff --git a/plugins/ShlExt/make.bat b/plugins/ShlExt/make.bat
index a9cd86087c..fb24a024ec 100644
--- a/plugins/ShlExt/make.bat
+++ b/plugins/ShlExt/make.bat
@@ -1,4 +1,4 @@
-@echo off
+rem @echo off
REM -Fi/u are for include/unit dirs
REM -Mdelphi is delphi mode
REM -WG - graphical app
@@ -6,8 +6,13 @@ REM -v0 turn off warnings
REM -O2 -Os // optimise
REM -Rintel (intel style asm)
REM -WB (relocatable) -WR (relocate)
+set OUTDIR="..\..\bin10\Release\Plugins"
+if not exist %OUTDIR% mkdir %OUTDIR%
md out
fpc shlext.dpr -FEout -Fi..\..\include;..\..\include\delphi -Fu..\..\include;..\..\include\delphi -Mdelphi -WG -O2 -Os -Rintel -WR -WB49ac0000 -v0
+
move out\shlext.dll .
del /Q out\*
-rd /Q out \ No newline at end of file
+rd /Q out
+
+move /y shlext.dll ..\..\bin10\Release\Plugins\ShlExt.dll \ No newline at end of file