kumquat-buildroot/package/qt5cinex/Config.in
Pierre Le Magourou 2b266815cb qt5cinex: Add new Qt5CinematicExperience package.
[Thomas:
 - Change the dependency logic in the Config.in file. We don't want to
   have a 'depends on BR2_PACKAGE_QT5GRAPHICALEFFECTS': it should be
   selected automatically. Instead, let's have a dependency on Qt5 and
   OpenGL, and select everything else automatically. A comment is
   added, shown only when Qt5 is available, on the right platforms
   (which have JSCore support), to explain that we need an OpenGL
   backend.
 - Change the prompt of the package to be qt5cinex, to match the
   package name.
 - Replace "High-definition support" by "High-definition version".
 - Fix a typo in the Config.in help text: definifition -> definition.
 - Add a comment in the .mk file explaining why we install a wrapper
   shell script (explanation taken from Pierre's e-mail).
 - Fix indentation in the install target commands.
 - Keep only sha256 hashes, those are sufficient. Replace the comment
   in the hash file by the more traditional "Locally computed".]

Signed-off-by: Pierre Le Magourou <pierre.lemagourou@openwide.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-01-07 21:37:55 +01:00

34 lines
1.0 KiB
Plaintext

comment "qt5cinex needs an OpenGL-capable backend"
depends on BR2_PACKAGE_QT5
depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE
depends on !BR2_PACKAGE_QT5_GL_AVAILABLE
config BR2_PACKAGE_QT5CINEX
bool "qt5cinex"
depends on BR2_PACKAGE_QT5
select BR2_PACKAGE_QT5BASE_NETWORK
select BR2_PACKAGE_QT5BASE_PNG
select BR2_PACKAGE_QT5BASE_WIDGETS
select BR2_PACKAGE_QT5BASE_EGLFS
select BR2_PACKAGE_QT5GRAPHICALEFFECTS
depends on BR2_PACKAGE_QT5_GL_AVAILABLE
# No comment needed for this option, it's an architecture
# dependency.
depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE
help
This application demonstrates the power of Qt5 and few of the new
additions available in QtQuick 2.0.
http://quitcoding.com/?page=work#cinex
if BR2_PACKAGE_QT5CINEX
config BR2_PACKAGE_QT5CINEX_HD
bool "High-definition version (aka RPi Edition)"
help
High definition version (1920x1080 resolution) of the
application, optimised for Raspberry PI cards. This version
can also be run on any platform supported by Qt5.
endif