summaryrefslogtreecommitdiff
path: root/Tests/Qt4Deploy
diff options
context:
space:
mode:
authorClinton Stimpson <clinton@elemtech.com>2012-02-29 07:55:31 -0700
committerClinton Stimpson <clinton@elemtech.com>2012-02-29 07:55:31 -0700
commitab9661c1dd4340af5a84244c920d94bddd1c8e90 (patch)
treeee7dce2f71577effa1e84efe0bab6dbb3d723897 /Tests/Qt4Deploy
parent52e827964843cdf25ec3be1af98cb47c17800545 (diff)
downloadcmake-ab9661c1dd4340af5a84244c920d94bddd1c8e90.tar.gz
Remove QtGui dependency in Qt4Deploy test and verify QtSql existance.
Diffstat (limited to 'Tests/Qt4Deploy')
-rw-r--r--Tests/Qt4Deploy/CMakeLists.txt2
-rw-r--r--Tests/Qt4Deploy/testdeploy.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Qt4Deploy/CMakeLists.txt b/Tests/Qt4Deploy/CMakeLists.txt
index ccacf749a9..646ea9f3b6 100644
--- a/Tests/Qt4Deploy/CMakeLists.txt
+++ b/Tests/Qt4Deploy/CMakeLists.txt
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.8)
project(Qt4Deploy)
set(CMAKE_INSTALL_PREFIX ${CMAKE_CURRENT_BINARY_DIR}/install)
-find_package(Qt4 REQUIRED QtMain QtCore QtGui QtSql)
+find_package(Qt4 REQUIRED QtMain QtCore QtSql)
include(${QT_USE_FILE})
add_executable(testdeploy MACOSX_BUNDLE testdeploy.cpp)
diff --git a/Tests/Qt4Deploy/testdeploy.cpp b/Tests/Qt4Deploy/testdeploy.cpp
index bcf77a222e..8b9c8d6fa5 100644
--- a/Tests/Qt4Deploy/testdeploy.cpp
+++ b/Tests/Qt4Deploy/testdeploy.cpp
@@ -1,8 +1,8 @@
#include <QCoreApplication>
-#include <QImageReader>
#include <QSqlDatabase>
#include <QLibraryInfo>
#include <QDebug>
+#include <QStringList>
int main(int argc, char** argv)
{