summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorRobert Griebl <robert.griebl@pelagicore.com>2016-07-21 02:40:03 +0200
committerRobert Griebl <robert.griebl@pelagicore.com>2016-07-22 08:46:13 +0000
commit708b1dba600199d86b8e74a8a86960b95b02b6ee (patch)
tree29964eb10b2d8e7ed6ddd62e3f2d421b1b216ab8 /config.tests
parent67c3a01618ceadac9176041917da1f32ff9aeb52 (diff)
Added libbacktrace to 3rdparty (BSD licensed)
This library is not available as a package on Linux distros - it is only distributed as part of gcc. This Qt-ified standalone build is based on https://github.com/ErwanLegrand/libbacktrace with the cmake parts replaced with qmake and unneeded files removed. Change-Id: Ie2be844753af67ac02e70470be11c601102dad5e Reviewed-by: Dominik Holland <dominik.holland@pelagicore.com>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/libdwarf/libdwarf.pro5
-rw-r--r--config.tests/libdwarf/main.cpp47
2 files changed, 52 insertions, 0 deletions
diff --git a/config.tests/libdwarf/libdwarf.pro b/config.tests/libdwarf/libdwarf.pro
new file mode 100644
index 00000000..c404c538
--- /dev/null
+++ b/config.tests/libdwarf/libdwarf.pro
@@ -0,0 +1,5 @@
+TARGET = libdwarf
+CONFIG -= qt
+CONFIG += console
+
+SOURCES += main.cpp
diff --git a/config.tests/libdwarf/main.cpp b/config.tests/libdwarf/main.cpp
new file mode 100644
index 00000000..d1bd6617
--- /dev/null
+++ b/config.tests/libdwarf/main.cpp
@@ -0,0 +1,47 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 Pelagicore AG
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the Pelagicore Application Manager.
+**
+** $QT_BEGIN_LICENSE:LGPL-QTAS$
+** Commercial License Usage
+** Licensees holding valid commercial Qt Automotive Suite 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 https://www.qt.io/terms-conditions.
+** For further information use the contact form at https://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 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or (at your option) the GNU General
+** Public license version 3 or any later version approved by the KDE Free
+** Qt Foundation. The licenses are as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-2.0.html and
+** https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+** SPDX-License-Identifier: LGPL-3.0
+**
+****************************************************************************/
+
+#include <libdwarf/dwarf.h>
+
+int main()
+{
+ return 0;
+}