summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorAndrew Stanley-Jones <andrew.stanley-jones@nokia.com>2011-07-12 14:02:23 +1000
committerQt by Nokia <qt-info@nokia.com>2011-07-12 07:55:12 +0200
commitf55d3e90f4bcf3309786136ea8ea03dfa8ccf230 (patch)
tree89d7f49e061429e39540168ae9472884460d6b9a /config.tests
parent2555a876c9e82b6f5cd1c4f53dd5d6af4c1437da (diff)
Add jsondb support to SFW
Change-Id: Ie701cfdd8a12b0eae6b90a77c364a23a11f5f1ab Reviewed-on: http://codereview.qt.nokia.com/1473 Reviewed-by: Andrew Stanley-Jones
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/jsondb/jsondb.pro7
-rw-r--r--config.tests/jsondb/main.cpp48
2 files changed, 55 insertions, 0 deletions
diff --git a/config.tests/jsondb/jsondb.pro b/config.tests/jsondb/jsondb.pro
new file mode 100644
index 00000000..6e65dfdd
--- /dev/null
+++ b/config.tests/jsondb/jsondb.pro
@@ -0,0 +1,7 @@
+TEMPLATE = app
+
+INCLUDEPATH += /opt/mt/include
+
+TARGET = jsondb
+
+SOURCES += main.cpp
diff --git a/config.tests/jsondb/main.cpp b/config.tests/jsondb/main.cpp
new file mode 100644
index 00000000..815298e6
--- /dev/null
+++ b/config.tests/jsondb/main.cpp
@@ -0,0 +1,48 @@
+/****************************************************************************
+**
+** 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/jsondb-error.h>
+
+int main()
+{
+ return 0;
+}