summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Olszak <olszak.tomasz@gmail.com>2015-02-26 15:41:39 +0100
committerJarosław Staniek <staniek@kde.org>2015-02-28 09:44:20 +0000
commit47a93737355b0f94d8aa5f9fea8339d83c327fd8 (patch)
tree1e7c3de46d95ed742421847c8604814058276ab9
parent25b779a49e39682b17c2a98fc820e6bb42cacf8b (diff)
Removed unused Tizen device mkspecs.
Change-Id: I6c89687829d929d5166c2c7ccaffb998b2bbc0c2 Reviewed-by: Jarosław Staniek <staniek@kde.org>
-rw-r--r--mkspecs/devices/common/linux_tizen_device_pre.conf44
-rw-r--r--mkspecs/devices/linux-g++-tizen-emulator/qmake.conf32
-rw-r--r--mkspecs/devices/linux-g++-tizen-emulator/qplatformdefs.h42
-rw-r--r--mkspecs/devices/linux-g++-tizen-ivi/qmake.conf8
-rw-r--r--mkspecs/devices/linux-g++-tizen-ivi/qplatformdefs.h42
-rw-r--r--mkspecs/devices/linux-g++-tizen-mobile/qmake.conf9
-rw-r--r--mkspecs/devices/linux-g++-tizen-mobile/qplatformdefs.h42
-rw-r--r--mkspecs/devices/linux-g++-tizen/qmake.conf17
-rw-r--r--mkspecs/devices/linux-g++-tizen/qplatformdefs.h42
9 files changed, 0 insertions, 278 deletions
diff --git a/mkspecs/devices/common/linux_tizen_device_pre.conf b/mkspecs/devices/common/linux_tizen_device_pre.conf
deleted file mode 100644
index e3f0ffff22..0000000000
--- a/mkspecs/devices/common/linux_tizen_device_pre.conf
+++ /dev/null
@@ -1,44 +0,0 @@
-#tizen common mkspec
-
-TIZEN_SDK_ROOT = $$(TIZEN_SDK_ROOT)
-TIZEN_TOOLCHAIN_PREFIX = $$(TIZEN_TOOLCHAIN_PREFIX)
-TIZEN_TOOLCHAIN_VERSION = $$(TIZEN_TOOLCHAIN_VERSION)
-TIZEN_SYSROOT = $$(TIZEN_SYSROOT)
-
-!isEmpty(TIZEN_SDK_ROOT):!isEmpty(TIZEN_TOOLCHAIN_PREFIX):!isEmpty(TIZEN_TOOLCHAIN_VERSION) {
-
- isEmpty(TIZEN_SYSROOT): error("Tizen Compiler defined but no Tizen sysroot defined. Please define Tizen sysroot in TIZEN_SYSROOT env variable")
-
- CROSS_COMPILE = $$TIZEN_SDK_ROOT/tools/$$TIZEN_TOOLCHAIN_PREFIX-gcc-$$TIZEN_TOOLCHAIN_VERSION/bin/$$TIZEN_TOOLCHAIN_PREFIX-
-}
-
-include(linux_device_pre.conf)
-
-!isEmpty(TIZEN_SDK_ROOT):!isEmpty(TIZEN_TOOLCHAIN_PREFIX):!isEmpty(TIZEN_TOOLCHAIN_VERSION) {
-
- # modifications to parameters set by linux_device_pre.conf
- QMAKE_LFLAGS += --sysroot=$$TIZEN_SYSROOT
- QMAKE_CFLAGS += --sysroot=$$TIZEN_SYSROOT
- QMAKE_CXXFLAGS += --sysroot=$$TIZEN_SYSROOT
-
- # TIZEN_ADDITIONAL_INCLUDES and TIZEN_ADDITIONAL_LIBS may be undefined
- QMAKE_INCDIR += \
- $$TIZEN_SYSROOT/usr/include \
- $$TIZEN_SYSROOT/usr/include/dbus-1.0 \
- $$TIZEN_SYSROOT/usr/include/fontconfig \
- $$TIZEN_SYSROOT/usr/include/freetype2 \
- $$TIZEN_SYSROOT/usr/include/appfw \
- $$TIZEN_SYSROOT/usr/lib/dbus-1.0/include \
- $$TIZEN_SYSROOT/usr/include/appfw \
- $$TIZEN_SYSROOT/usr/include/system \
- $$TIZEN_SYSROOT/usr/include/dlog \
- $$TIZEN_ADDITIONAL_INCLUDES
-
- QMAKE_LIBDIR += \
- $$TIZEN_SYSROOT/lib \
- $$TIZEN_SYSROOT/usr/lib \
- $$TIZEN_ADDITIONAL_LIBS
-}
-
-QMAKE_PLATFORM = tizen $$QMAKE_PLATFORM
-DEFINES += Q_OS_LINUX_TIZEN \ No newline at end of file
diff --git a/mkspecs/devices/linux-g++-tizen-emulator/qmake.conf b/mkspecs/devices/linux-g++-tizen-emulator/qmake.conf
deleted file mode 100644
index a4edbf06f2..0000000000
--- a/mkspecs/devices/linux-g++-tizen-emulator/qmake.conf
+++ /dev/null
@@ -1,32 +0,0 @@
-#Copyright (©) 2013 Tomasz Olszak <olszak.tomasz@gmail.com>
-#All rights reserved.
-#Redistribution and use in source and binary forms, with or without
-#modification, are permitted provided that the following conditions
-#are met:
-
-#1. Redistributions of source code must retain the copyright
-# notice, this list of conditions and the following disclaimer.
-#2. Redistributions in binary form must reproduce the copyright
-# notice, this list of conditions and the following disclaimer in the
-# documentation and/or other materials provided with the distribution.
-#3. The name of the author may not be used to endorse or promote products
-# derived from this software without specific prior written permission.
-
-#THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
-#IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-#OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
-#IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
-#INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-#NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-#DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-#THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-#(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-#THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-include(../common/linux_tizen_device_pre.conf)
-
-DEFINES += Q_OS_LINUX_TIZEN_SIMULATOR
-QT_QPA_DEFAULT_PLATFORM = xcb
-DEFINES += DFLT_XKB_CONFIG_ROOT='\\"/etc/X11/xkb\\"'
-
-load(qt_config)
diff --git a/mkspecs/devices/linux-g++-tizen-emulator/qplatformdefs.h b/mkspecs/devices/linux-g++-tizen-emulator/qplatformdefs.h
deleted file mode 100644
index 461f3d5589..0000000000
--- a/mkspecs/devices/linux-g++-tizen-emulator/qplatformdefs.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the qmake spec of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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 Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/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 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, Digia gives you certain additional
-** rights. These rights are described in the Digia 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.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include "../../linux-g++/qplatformdefs.h"
diff --git a/mkspecs/devices/linux-g++-tizen-ivi/qmake.conf b/mkspecs/devices/linux-g++-tizen-ivi/qmake.conf
deleted file mode 100644
index adb59061a3..0000000000
--- a/mkspecs/devices/linux-g++-tizen-ivi/qmake.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-#Tizen ivi spec
-
-include(../common/linux_tizen_device_pre.conf)
-
-DEFINES += Q_OS_LINUX_TIZEN_IVI
-QT_QPA_DEFAULT_PLATFORM = wayland
-
-load(qt_config)
diff --git a/mkspecs/devices/linux-g++-tizen-ivi/qplatformdefs.h b/mkspecs/devices/linux-g++-tizen-ivi/qplatformdefs.h
deleted file mode 100644
index c665e8259b..0000000000
--- a/mkspecs/devices/linux-g++-tizen-ivi/qplatformdefs.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/****************************************************************************
-**
-** Copyright (©) 2013 Tomasz Olszak <olszak.tomasz@gmail.com>
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the qmake spec of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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 Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/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 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, Digia gives you certain additional
-** rights. These rights are described in the Digia 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.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include "../../linux-g++/qplatformdefs.h"
diff --git a/mkspecs/devices/linux-g++-tizen-mobile/qmake.conf b/mkspecs/devices/linux-g++-tizen-mobile/qmake.conf
deleted file mode 100644
index 8fa67b68c6..0000000000
--- a/mkspecs/devices/linux-g++-tizen-mobile/qmake.conf
+++ /dev/null
@@ -1,9 +0,0 @@
-# Tizen mobile spec
-
-include(../common/linux_tizen_device_pre.conf)
-
-DEFINES += Q_OS_LINUX_TIZEN_MOBILE
-QT_QPA_DEFAULT_PLATFORM = xcb
-DEFINES += DFLT_XKB_CONFIG_ROOT='\\"/etc/X11/xkb\\"'
-
-load(qt_config)
diff --git a/mkspecs/devices/linux-g++-tizen-mobile/qplatformdefs.h b/mkspecs/devices/linux-g++-tizen-mobile/qplatformdefs.h
deleted file mode 100644
index c665e8259b..0000000000
--- a/mkspecs/devices/linux-g++-tizen-mobile/qplatformdefs.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/****************************************************************************
-**
-** Copyright (©) 2013 Tomasz Olszak <olszak.tomasz@gmail.com>
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the qmake spec of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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 Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/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 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, Digia gives you certain additional
-** rights. These rights are described in the Digia 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.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include "../../linux-g++/qplatformdefs.h"
diff --git a/mkspecs/devices/linux-g++-tizen/qmake.conf b/mkspecs/devices/linux-g++-tizen/qmake.conf
deleted file mode 100644
index f8e348c66c..0000000000
--- a/mkspecs/devices/linux-g++-tizen/qmake.conf
+++ /dev/null
@@ -1,17 +0,0 @@
-#Tizen spec
-
-include(../common/linux_tizen_device_pre.conf)
-
-contains(TIZEN_PROFILE, mobile) {
- DEFINES += Q_OS_LINUX_TIZEN_MOBILE
-} else:contains(TIZEN_PROFILE, ivi) {
- DEFINES += Q_OS_LINUX_TIZEN_IVI
-} else:contains(TIZEN_PROFILE, generic) {
- DEFINES += Q_OS_LINUX_TIZEN_GENERIC
-} else:contains(TIZEN_PROFILE, common) {
- DEFINES += Q_OS_LINUX_TIZEN_COMMON
-} else:contains(TIZEN_PROFILE, wearable) {
- DEFINES += Q_OS_LINUX_TIZEN_WEARABLE
-}
-
-load(qt_config)
diff --git a/mkspecs/devices/linux-g++-tizen/qplatformdefs.h b/mkspecs/devices/linux-g++-tizen/qplatformdefs.h
deleted file mode 100644
index c665e8259b..0000000000
--- a/mkspecs/devices/linux-g++-tizen/qplatformdefs.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/****************************************************************************
-**
-** Copyright (©) 2013 Tomasz Olszak <olszak.tomasz@gmail.com>
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the qmake spec of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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 Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/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 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, Digia gives you certain additional
-** rights. These rights are described in the Digia 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.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include "../../linux-g++/qplatformdefs.h"