diff options
author | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2014-03-05 09:52:59 -0800 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2014-03-05 09:52:59 -0800 |
commit | 282d41bc94762b1ad4dde36dfad5c6a8d3405299 (patch) | |
tree | 7f66eee512c0d3d7743d3ea8cf3ce5dd837e9b38 /ZeroTierUI | |
parent | b72c2c63587cf387771e04288ddde37403e69e4c (diff) | |
download | infinitytier-282d41bc94762b1ad4dde36dfad5c6a8d3405299.tar.gz infinitytier-282d41bc94762b1ad4dde36dfad5c6a8d3405299.zip |
Script to build UI against our own new precompiled Win32 static Qt binary, which paradoxiclally results in a smaller executable than dynamic Qt and doesn't require us to bundle a million DLLs. Also update installer to reflect that. Finally, add a step to the installer to remove all instances of the tap device on full uninstall so as not to leave orphaned junk in your network connections or device manager. Looking good!
Diffstat (limited to 'ZeroTierUI')
-rw-r--r-- | ZeroTierUI/WindowsBuildOfficial.bat | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ZeroTierUI/WindowsBuildOfficial.bat b/ZeroTierUI/WindowsBuildOfficial.bat new file mode 100644 index 00000000..06cad543 --- /dev/null +++ b/ZeroTierUI/WindowsBuildOfficial.bat @@ -0,0 +1,9 @@ +REM If you're an OSS user and want to run this batch file, edit to change the path to Qt. +REM Start Visual Studio command prompt and run this from within the ZeroTierUI subfolder. + +CD .. +MKDIR build-ZeroTierUI-win32-release +CD build-ZeroTierUI-win32-release +C:\Qt\5.2.1\Src\qtbase\bin\qmake.exe ..\ZeroTierUI\ZeroTierUI.pro +nmake clean +nmake |