summaryrefslogtreecommitdiffstats
path: root/package/qt5/qt5base/Config.in
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2013-03-07 10:18:38 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2013-03-10 22:37:43 +0100
commit54e95512e5125a650a59c6c7dc0cef70ea832157 (patch)
treea69c8a93c0f3903929e8e95a2bb0db0affce02c8 /package/qt5/qt5base/Config.in
parent1737b5648c9f778149eb7da5897b66a9577d22c4 (diff)
downloadbuildroot-novena-54e95512e5125a650a59c6c7dc0cef70ea832157.tar.gz
buildroot-novena-54e95512e5125a650a59c6c7dc0cef70ea832157.zip
qt5base: new package
This is the beginning of the Qt5 packaging. This commit allows to build only the qtbase module, which contains QtCore, QtNetwork, QtXml, QtTest, QtSql and QtConcurrent. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/qt5/qt5base/Config.in')
-rw-r--r--package/qt5/qt5base/Config.in56
1 files changed, 56 insertions, 0 deletions
diff --git a/package/qt5/qt5base/Config.in b/package/qt5/qt5base/Config.in
new file mode 100644
index 000000000..4cd6ce002
--- /dev/null
+++ b/package/qt5/qt5base/Config.in
@@ -0,0 +1,56 @@
+config BR2_PACKAGE_QT5BASE
+ bool "qt5base"
+ select BR2_PACKAGE_ZLIB
+ select BR2_PACKAGE_PCRE
+ select BR2_PACKAGE_PCRE_16
+ help
+ Qt is a cross-platform application and UI framework for
+ developers using C++.
+
+ This package corresponds to the qt5base module, which
+ contains the base Qt libraries: QtCore, QtNetwork, QtGui,
+ QtWidgets, etc.
+
+ http://qt-project.org
+
+if BR2_PACKAGE_QT5BASE
+
+config BR2_PACKAGE_QT5BASE_LICENSE_APPROVED
+ bool "Approve free license"
+ help
+ Select this if you approve one of the available free licenses for the
+ Qt5 library.
+ By doing this you will not be asked while the library is compiled.
+ Please read and understand the license terms before approving this.
+
+ LGPL v2.1: http://qt-project.org/doc/qt-5.0/qtdoc/lgpl.html
+ GPL v3.0: http://qt-project.org/doc/qt-5.0/qtdoc/gpl.html
+
+ See also http://qt-project.org/doc/qt-5.0/qtdoc/licensing.html
+
+config BR2_PACKAGE_QT5BASE_NETWORK
+ bool "network module"
+ help
+ This options enables the Qt5Network library.
+
+config BR2_PACKAGE_QT5BASE_CONCURRENT
+ bool "concurrent module"
+ help
+ This options enables the Qt5Concurrent library.
+
+config BR2_PACKAGE_QT5BASE_SQL
+ bool "sql module"
+ help
+ This options enables the Qt5Sql library.
+
+config BR2_PACKAGE_QT5BASE_TEST
+ bool "test module"
+ help
+ This options enables the Qt5Test library.
+
+config BR2_PACKAGE_QT5BASE_XML
+ bool "XML module"
+ help
+ This options enables the Qt5Xml library.
+
+endif