diff options
author | Carsten Bürger <carsten.burger@nokia.com> | 2012-02-23 13:50:05 +0100 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-02-24 09:51:38 +0100 |
commit | e3fb46817dd4e959eb3e60f84ed77169e35b256d (patch) | |
tree | 8aeffa74d5e79794c29a7d682f73e0f087be33b4 /config.tests | |
parent | b1207def88a6384950c1b57246abc6a5e6496476 (diff) | |
download | qtlocation-e3fb46817dd4e959eb3e60f84ed77169e35b256d.tar.gz |
Introduce locationd interface library to npe positioning backend
Change-Id: I11c7b62a188141db687c0ac9d0ffb77330fa14ca
Reviewed-by: Alex <alex.blasche@nokia.com>
Diffstat (limited to 'config.tests')
-rw-r--r-- | config.tests/locationd/locationd.pro | 8 | ||||
-rw-r--r-- | config.tests/locationd/main.cpp | 49 |
2 files changed, 57 insertions, 0 deletions
diff --git a/config.tests/locationd/locationd.pro b/config.tests/locationd/locationd.pro new file mode 100644 index 00000000..3b1793f9 --- /dev/null +++ b/config.tests/locationd/locationd.pro @@ -0,0 +1,8 @@ +TEMPLATE = app +INCLUDEPATH += $$[QT_INSTALL_PREFIX]/include/mtlocationd +#unix{ +# CONFIG += link_pkgconfig +# PKGCONFIG += locationd +# } +LIBS += -lmtlocationd +SOURCES += main.cpp diff --git a/config.tests/locationd/main.cpp b/config.tests/locationd/main.cpp new file mode 100644 index 00000000..ea2ec31f --- /dev/null +++ b/config.tests/locationd/main.cpp @@ -0,0 +1,49 @@ +/**************************************************************************** +** +** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/ +** +** This file is part of the QtLocation 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 <locationdaemonconnection.h> + +int main() +{ + LocationDaemonConnection* m_locationdConn = new LocationDaemonConnection(0); + delete (m_locationdConn); + return 0; +} |