From patchwork Wed Feb 27 23:26:00 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 223735 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 697152C0085 for ; Thu, 28 Feb 2013 10:31:24 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id A7E5291A81; Wed, 27 Feb 2013 23:31:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id b+6RROQgQpSO; Wed, 27 Feb 2013 23:31:11 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id D21478A6F8; Wed, 27 Feb 2013 23:29:22 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id BA6B28F753 for ; Wed, 27 Feb 2013 23:26:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 56552A8289 for ; Wed, 27 Feb 2013 23:26:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id r+tnonJLlx8X for ; Wed, 27 Feb 2013 23:26:43 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [94.23.35.102]) by hemlock.osuosl.org (Postfix) with ESMTP id 6AFF0A8219 for ; Wed, 27 Feb 2013 23:26:43 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 6EEE9813; Thu, 28 Feb 2013 00:26:41 +0100 (CET) Received: from localhost (humanoidz.org [82.247.183.72]) by mail.free-electrons.com (Postfix) with ESMTPSA id 994B17B2 for ; Thu, 28 Feb 2013 00:26:40 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Thu, 28 Feb 2013 00:26:00 +0100 Message-Id: <1362007582-14753-10-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1362007582-14753-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1362007582-14753-1-git-send-email-thomas.petazzoni@free-electrons.com> Subject: [Buildroot] [PATCH 09/30] qt5: base infrastructure X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Thomas Petazzoni --- package/qt5/Config.in | 18 ++++++++++++++++++ package/qt5/qt5.mk | 1 + 2 files changed, 19 insertions(+) create mode 100644 package/qt5/Config.in create mode 100644 package/qt5/qt5.mk diff --git a/package/qt5/Config.in b/package/qt5/Config.in new file mode 100644 index 0000000..0acb89e --- /dev/null +++ b/package/qt5/Config.in @@ -0,0 +1,18 @@ +comment "Qt5 needs a toolchain with WCHAR, IPv6, thread and C++ support" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS + +menuconfig BR2_PACKAGE_QT5 + bool "Qt5" + depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_USE_WCHAR + depends on BR2_INET_IPV6 + depends on BR2_TOOLCHAIN_HAS_THREADS + help + This option enables the Qt5 framework. Sub-options allow to + select which modules should be built. + + http://qt-project.org + +if BR2_PACKAGE_QT5 + +endif diff --git a/package/qt5/qt5.mk b/package/qt5/qt5.mk new file mode 100644 index 0000000..8b1a7ed --- /dev/null +++ b/package/qt5/qt5.mk @@ -0,0 +1 @@ +include package/qt5/*/*.mk