summaryrefslogtreecommitdiffstats
path: root/windows/neo-vars/src/Make-Compose.bat
diff options
context:
space:
mode:
Diffstat (limited to 'windows/neo-vars/src/Make-Compose.bat')
-rw-r--r--windows/neo-vars/src/Make-Compose.bat38
1 files changed, 38 insertions, 0 deletions
diff --git a/windows/neo-vars/src/Make-Compose.bat b/windows/neo-vars/src/Make-Compose.bat
new file mode 100644
index 0000000..bba51f2
--- /dev/null
+++ b/windows/neo-vars/src/Make-Compose.bat
@@ -0,0 +1,38 @@
+@echo off
+
+echo Setting local path variables
+:: TortoiseSVN and its clever tool SubWCRev
+set Tsvnpath=C:\Programme\TortoiseSVN\bin
+set SubWCRev=%Tsvnpath%\SubWCRev.exe
+
+set ahkpath=C:\Programme\AutoHotkey
+set AutoHotKey=%ahkpath%\AutoHotKey.exe
+
+REM The path to the authohotkey directory in the local svn copy, MUST be "."
+set srcdir=.
+set outdir=..\out
+set Ssrcdir=%srcdir%\Source
+set batrevtemplate2=%Ssrcdir%\_subwcrev2.tmpl.bat
+set batrevoutput2=%Ssrcdir%\_subwcrev2.bat
+
+REM The path to the directory used for generating a consistent SVN version (revision number)
+set svnversiondir2=..\..\..\Compose
+
+echo Generating Version File
+"%SubWCRev%" "%svnversiondir2%" "%batrevtemplate2%" "%batrevoutput2%"
+call "%batrevoutput2%"
+
+set fncomp=%Ssrcdir%\Compose.generated.ahk
+"%SubWCRev%" "%svnversiondir2%" -nm
+if errorlevel 1 (
+ set fncomp=%Ssrcdir%\Compose-tainted.generated.ahk
+)
+
+echo Deleting old Compose sequences
+del "%Ssrcdir%\Compose.generated.ahk" "%Ssrcdir%\Compose-tainted.generated.ahk" 2> nul
+
+echo Compiling Compose sequences
+"%AutoHotkey%" "%Ssrcdir%\makecompose.ahk" "%CompRevision%" "%fncomp%" "%svnversiondir2%\en_US.UTF-8" "%svnversiondir2%\Compose.neo"
+
+echo Compose Update complete! You can now close this log-window.
+pause