summaryrefslogtreecommitdiff
path: root/windows/autohotkey/Build-Update.bat
diff options
context:
space:
mode:
authormartin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-07-08 17:02:22 +0000
committermartin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-07-08 17:02:22 +0000
commitc5acf91f2bf11c143d56bffe71f5cb1234bde1bc (patch)
tree337c6b5ad77c8f08cdf15249737b2ce50a05ac99 /windows/autohotkey/Build-Update.bat
parenta5a18396a836413d326215c567318e23c19816ec (diff)
downloadneo-layout-c5acf91f2bf11c143d56bffe71f5cb1234bde1bc.tar.gz
neo-layout-c5acf91f2bf11c143d56bffe71f5cb1234bde1bc.tar.bz2
neo-layout-c5acf91f2bf11c143d56bffe71f5cb1234bde1bc.zip
Rechtschreibfehler korrigiert, Syntaxen korrigiert, Lang-s-Tastatur-Option hinzugefügt
git-svn-id: https://svn.neo-layout.org@624 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'windows/autohotkey/Build-Update.bat')
-rw-r--r--windows/autohotkey/Build-Update.bat21
1 files changed, 8 insertions, 13 deletions
diff --git a/windows/autohotkey/Build-Update.bat b/windows/autohotkey/Build-Update.bat
index d6503af..d4f7470 100644
--- a/windows/autohotkey/Build-Update.bat
+++ b/windows/autohotkey/Build-Update.bat
@@ -1,35 +1,30 @@
@echo off
-
-
echo Setting local path variables
+
REM The path to the Auto Hotkeyprogram
set ahk=C:\Programme\AutoHotkey
+
REM The path to the authohotkey directory in the local svn copy
set svn=.
+
REM Just some usefull shortcuts:
set scr="%svn%\Source"
set fn=neo20-all-in-one
-
-
echo Killing the old (AHK)Driver
-tskill neo20-all-in-one
-
-
+REM tskill neo20-all-in-one
echo Creating a new Driver from the Source code
REM The order *is* important!
copy "%scr%\Warning.ahk" + "%scr%\Changelog-and-Todo.ahk" + "%scr%\Global-Part.ahk" + "%scr%\Methods-Layers.ahk" + "%scr%\Keys-Qwert-to-Neo.ahk" + "%scr%\Keys-Neo.ahk" + "%scr%\Methods-Lights.ahk" + "%scr%\Methods-Other.ahk" "%svn%\%fn%.ahk"
-
-
+REM if exist "%svn%\Compose\Compose-all-in-one.ahk" copy "%svn%\%fn%.ahk" + "%svn%\Compose\Compose-all-in-one.ahk" "%svn%\%fn%.ahk"
echo Compiling the new Driver using Autohotkey
"%ahk%\Compiler\Ahk2Exe.exe" /in "%svn%\%fn%.ahk" /out "%svn%\%fn%.exe" /icon "%svn%\neo.ico"
-
-
-
echo Driver Update complete! You can now close this log-window.
+
REM Start the new Driver
%fn%.exe
-exit \ No newline at end of file
+
+rem wie kann man hier mit der Skriptabarbeitung weitermachen? \ No newline at end of file