summaryrefslogtreecommitdiffstats
path: root/config.tests/mir
diff options
context:
space:
mode:
authorLorn Potter <lorn.potter@canonical.com>2014-11-29 10:23:57 +1000
committerLorn Potter <lorn.potter@canonical.com>2016-08-18 05:50:39 +0000
commitfcda5453a1fac581ca0232f04ae264c30db24d59 (patch)
treea175a88f609b2c97624db289840225357d095dcb /config.tests/mir
parent434af789f0d56ca7a521ca2d9ec8cf3b1057fd37 (diff)
Add QInputDeviceInfo
Change-Id: Ia2743851a7843cb2f44a82cffd80ddd176b2c564 Reviewed-by: Lorn Potter <lorn.potter@canonical.com>
Diffstat (limited to 'config.tests/mir')
-rw-r--r--config.tests/mir/main.cpp42
-rw-r--r--config.tests/mir/mir.pro8
2 files changed, 50 insertions, 0 deletions
diff --git a/config.tests/mir/main.cpp b/config.tests/mir/main.cpp
new file mode 100644
index 00000000..5b128abe
--- /dev/null
+++ b/config.tests/mir/main.cpp
@@ -0,0 +1,42 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 The Qt Company Ltd and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the QtSystems module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL21$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 or version 3 as published by the Free
+** Software Foundation and appearing in the file LICENSE.LGPLv21 and
+** LICENSE.LGPLv3 included in the packaging of this file. Please review the
+** following information to ensure the GNU Lesser General Public License
+** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** As a special exception, The Qt Company gives you certain additional
+** rights. These rights are described in The Qt Company LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <mir_toolkit/mir_connection.h>
+#include <mir_toolkit/mir_input_device.h>
+
+int main()
+{
+ MirInputConfig* (*function_is_available)(MirConnection *connection);
+ function_is_available = &mir_connection_create_input_config;
+ return 0;
+}
diff --git a/config.tests/mir/mir.pro b/config.tests/mir/mir.pro
new file mode 100644
index 00000000..694373a4
--- /dev/null
+++ b/config.tests/mir/mir.pro
@@ -0,0 +1,8 @@
+TEMPLATE = app
+
+CONFIG += link_pkgconfig
+PKGCONFIG += mirclient
+
+TARGET = mir
+
+SOURCES += main.cpp