summaryrefslogtreecommitdiffstats
path: root/windows/autohotkey/Build-Update.bat
diff options
context:
space:
mode:
authordennis <dennis@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-07-02 11:52:30 +0000
committerdennis <dennis@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-07-02 11:52:30 +0000
commitb5884c3a7cbe08d9a56fa8adf7df470904e6545a (patch)
treec439d6063b2557e8fb817cea8ffc84c73d3ffc52 /windows/autohotkey/Build-Update.bat
parent92d57fec41b47a5adc80101b08373063d720b184 (diff)
Erste technische Vorarbeiten zur logischen Modularisierung des viel zu lange gewordenen AHK-Skriptes.
git-svn-id: https://svn.neo-layout.org@590 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'windows/autohotkey/Build-Update.bat')
-rw-r--r--windows/autohotkey/Build-Update.bat32
1 files changed, 32 insertions, 0 deletions
diff --git a/windows/autohotkey/Build-Update.bat b/windows/autohotkey/Build-Update.bat
new file mode 100644
index 0000000..98b4e8b
--- /dev/null
+++ b/windows/autohotkey/Build-Update.bat
@@ -0,0 +1,32 @@
+@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
+
+
+
+echo Creating a new Driver from the Source code
+copy /B "%scr%\Warning.ahk" + "%scr%\neo20-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