aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-10-30 11:26:26 -0700
committerGerald Combs <gerald@wireshark.org>2015-10-30 18:31:18 +0000
commit5ab8b8d79370a8c7450fd60bb134eeb215fa3ad5 (patch)
treed8f5bfeb7fe32035ef2631dc97ddcbc924d64c7a /tools
parentad1f7f467765e780ac46101f07961fa02779bcbf (diff)
Remove build-qt-sdk.bat.
The buildbots have been using pre-built packages from The Qt Company for a while now and it's unlikely we'll have to compile our own in the future. Change-Id: Iee93ab05af46f40585256f991b176392f018727a Reviewed-on: https://code.wireshark.org/review/11449 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.am1
-rwxr-xr-xtools/build-qt-sdk.bat94
2 files changed, 0 insertions, 95 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 9dc4ee643d..658cb2a1e3 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -89,7 +89,6 @@ EXTRA_DIST = \
$(PIDL_FILES) \
asn2deb \
asn2wrs.py \
- build-qt-sdk.bat \
checkfiltername.pl \
checkhf.pl \
checklicenses.py \
diff --git a/tools/build-qt-sdk.bat b/tools/build-qt-sdk.bat
deleted file mode 100755
index 372448ab41..0000000000
--- a/tools/build-qt-sdk.bat
+++ /dev/null
@@ -1,94 +0,0 @@
-@echo off
-
-rem Directions:
-
-rem Download the latest source archive from
-rem http://qt.nokia.com/downloads/downloads#qt-lib
-
-rem Unpack the archive and run this script from the archive directory.
-
-rem The default installation prefix is c:\Qt\5.1.1-... You can change
-rem it below.
-
-echo "%PATH%" | find "cygwin"
-if errorlevel 1 set PATH=%PATH%;c:\cygwin\bin
-
-set VS_VERSION=""
-set API_BITS=""
-
-rem Visual Studio version
-
-if not "%VCINSTALLDIR%"=="" (
- echo "%VCINSTALLDIR%" | find "10.0"
- if not errorlevel 1 (
- set VS_VERSION=2010
- ) else (
- echo "%VCINSTALLDIR%" | find "9.0"
- if not errorlevel 1 (
- set VS_VERSION=2008
- )
- )
-)
-
-if "%VS_VERSION%"=="" goto no_vs_version
-
-rem Target API
-
-if not "%FrameworkDir64%"=="" (
- set API_BITS=64
-) else (
- if not "%FrameworkDir%"=="" (
- echo %FrameworkDir% | find "64"
- if not errorlevel 1 (
- set API_BITS=64
- ) else (
- set API_BITS=32
- )
- )
-)
-
-if "%API_BITS%"=="" goto no_api_bits
-
-set QT_PLATFORM=win32-msvc%VS_VERSION%
-set QT_PREFIX=c:\Qt\5.1.1-MSVC%VS_VERSION%-win%API_BITS%
-
-nmake confclean || echo ...and that's probably OK.
-
-echo.
-echo ========
-echo Building using mkspec %QT_PLATFORM% (%API_BITS% bit)
-echo Installing in %QT_PREFIX%
-echo ========
-
-rem We could probably get away with skipping several other modules, e.g.
-rem qtsensors and qtserialport
-configure -opensource -confirm-license -platform %QT_PLATFORM% -prefix %QT_PREFIX% ^
- -no-dbus ^
- -no-opengl -no-angle ^
- -no-sql-sqlite ^
- -no-cetest ^
- -mp ^
- -nomake examples ^
- -skip qtdoc ^
- -skip qtquickcontrols ^
- -skip qtwebkit ^
- -skip qtwebkit-examples ^
- -skip qtxmlpatterns ^
-
-
-nmake
-
-echo.
-echo You'll have to run nmake install yourself.
-
-goto end
-
-:no_vs_version
-echo "Unable to find your Visual Studio version. Did you run vcvarsall.bat?"
-goto end
-
-:no_api_bits
-echo "Unable to find your target API. Did you run vcvarsall.bat?"
-goto end
-
-:end