summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.p.agocs@nokia.com>2012-07-16 16:13:18 +0300
committerQt by Nokia <qt-info@nokia.com>2012-07-18 08:15:30 +0200
commit504c2cb1e191ad41a4699e2b1ebaf6f190035150 (patch)
treefe2c29d104ef4ff5abf723f54994c849be80c4ad /config.tests
parent402b319633de5e318fe05e9e7dd7ce53310f91c2 (diff)
Add config test for kms
Change-Id: I55afc65d356aaca0fe443dda100805a4df8f0ae6 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/qpa/kms/kms.cpp56
-rw-r--r--config.tests/qpa/kms/kms.pro4
2 files changed, 60 insertions, 0 deletions
diff --git a/config.tests/qpa/kms/kms.cpp b/config.tests/qpa/kms/kms.cpp
new file mode 100644
index 0000000000..281fbca5a9
--- /dev/null
+++ b/config.tests/qpa/kms/kms.cpp
@@ -0,0 +1,56 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/
+**
+** This file is part of the config.tests of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <stdlib.h>
+extern "C" {
+#include <gbm.h>
+#include <xf86drmMode.h>
+#include <xf86drm.h>
+}
+#include <EGL/egl.h>
+#include <GLES2/gl2.h>
+
+int main(int, char **)
+{
+ // Check for gbm_surface which is quite a recent addition.
+ gbm_surface *surface = 0;
+ return 0;
+}
diff --git a/config.tests/qpa/kms/kms.pro b/config.tests/qpa/kms/kms.pro
new file mode 100644
index 0000000000..618063dbb9
--- /dev/null
+++ b/config.tests/qpa/kms/kms.pro
@@ -0,0 +1,4 @@
+SOURCES = kms.cpp
+CONFIG += link_pkgconfig
+PKGCONFIG += libdrm libudev egl gbm glesv2
+CONFIG -= qt