summaryrefslogtreecommitdiff
path: root/deploy-win.bat
diff options
context:
space:
mode:
Diffstat (limited to 'deploy-win.bat')
-rwxr-xr-xdeploy-win.bat19
1 files changed, 19 insertions, 0 deletions
diff --git a/deploy-win.bat b/deploy-win.bat
new file mode 100755
index 0000000..1c19f40
--- /dev/null
+++ b/deploy-win.bat
@@ -0,0 +1,19 @@
+mkdir dist
+cd dist
+mkdir tikzit
+cd tikzit
+mkdir icons
+
+copy ..\..\tikzfiles.reg .
+copy ..\..\release\tikzit.exe .
+copy ..\..\images\tikzdoc.ico icons\
+copy C:\Windows\System32\msvcp140.dll .
+copy C:\Windows\System32\vcruntime140.dll .
+copy C:\OpenSSL-Win64\bin\libeay32.dll .
+copy C:\OpenSSL-Win64\bin\ssleay32.dll .
+
+windeployqt.exe --no-compiler-runtime --no-webkit2 --no-angle --no-opengl-sw --no-system-d3d-compiler --no-translations --no-quick-import .\tikzit.exe
+
+cd ..
+7z a -tzip tikzit.zip tikzit
+cd ..