Nachtrag zu r1246: neues make-build.bat, das die custom.ahk temporär umbenennt, und neues Top-level AHK-Skript

This commit is contained in:
mösi 2008-11-26 20:32:13 +00:00
parent fd347abf93
commit d3d342363c
2 changed files with 28 additions and 3 deletions

View File

@ -17,6 +17,10 @@ set ahkrevoutput1=%Ssrcdir%\_subwcrev1.generated.ahk
set batrevtemplate1=%Ssrcdir%\_subwcrev1.tmpl.bat
set batrevoutput1=%Ssrcdir%\_subwcrev1.bat
set NEO2AppData=%APPDATA%\NEO2
set customahk=%NEO2AppData%\custom.ahk
set customahkbuild=%customahk%.buildtmp
REM The path to the directory used for generating a consistent SVN version (revision number)
set svnversiondir1=.
@ -36,8 +40,16 @@ del "%outdir%\neo20-r*.exe" 2> nul
set fnahk=%srcdir%\neo20-all.ahk
if exist "%customahk%" (
ren "%customahk%" "%customahkbuild%"
)
echo Compiling the new Driver using Autohotkey
"%Ahk2Exe%" /in "%fnahk%" /out "%fnexe%" /icon "%srcdir%\neo_enabled.ico"
if exist "%customahkbuild%" (
ren "%customahkbuild%" "%customahk%"
)
echo Driver Update complete! You can now close this log-window.
pause

View File

@ -22,12 +22,25 @@ SetWorkingDir, %A_ScriptDir%
; mehr gesetzt!
#include source\initialize.ahk
#include source\resources.ahk
; Das Herz von neo20.ahk: die Tasten- und Zeichen-Behandlungsroutinen
#include source\varsfunctions.ahk
; Die Bildschirmtastatur
#include source\screenkeyboard.ahk
; Mitgelieferte Belegungsvarianten
#include source\langstastatur.ahk
#include source\einhandneo.ahk
#include source\lernmodus.ahk
#include source\tools.ahk
; individuelle Einstellungen
#include *i %A_AppData%\NEO2\custom.ahk
#include source\tray.ahk
#include source\keyhooks.ahk
#include source\trayfunctions.ahk
#include source\levelfunctions.ahk
#include source\keyboardleds.ahk
#include source\screenkeyboard.ahk
; Das Herz von neo20.ahk: die Tasten- und Zeichen-Behandlungsroutinen
#include source\varsfunctions.ahk