summaryrefslogtreecommitdiff
path: root/config.tests
diff options
context:
space:
mode:
authoralex <alex.blasche@nokia.com>2011-09-19 17:53:43 +1000
committerQt by Nokia <qt-info@nokia.com>2011-09-27 04:56:05 +0200
commit9302f1348d4d22c78c364d7a37526dd004fec7a0 (patch)
tree7f6d77e51da97ac33d4fa76651f02c7c76b0e9c4 /config.tests
parent7f41a59ee2a2584fbc1b1e4a53ae6d7cfbf7e97b (diff)
downloadqtlocation-9302f1348d4d22c78c364d7a37526dd004fec7a0.tar.gz
Add first version of NPE backend
Change-Id: I007b73a98ee7123c7361b8d00173ee93aa2955fe Reviewed-on: http://codereview.qt-project.org/5119 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Alex <alex.blasche@nokia.com>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/mtcore/main.cpp47
-rw-r--r--config.tests/mtcore/mtcore.pro9
2 files changed, 56 insertions, 0 deletions
diff --git a/config.tests/mtcore/main.cpp b/config.tests/mtcore/main.cpp
new file mode 100644
index 00000000..29a05dac
--- /dev/null
+++ b/config.tests/mtcore/main.cpp
@@ -0,0 +1,47 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the FOO module 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 <mtcore/variantstream.h>
+
+int main()
+{
+ return 0;
+}
diff --git a/config.tests/mtcore/mtcore.pro b/config.tests/mtcore/mtcore.pro
new file mode 100644
index 00000000..c7e55138
--- /dev/null
+++ b/config.tests/mtcore/mtcore.pro
@@ -0,0 +1,9 @@
+TEMPLATE = app
+
+QT += declarative
+unix{
+ CONFIG += link_pkgconfig
+ PKGCONFIG += mtcore
+ }
+
+SOURCES += main.cpp