summaryrefslogtreecommitdiffstats
path: root/windows/autohotkey/Build-Update.bat
blob: 98b4e8b30e018c2a941f800d608fbf4d0c87e65f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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