diff mbox series

Disable qt5declarative dependency on GUI

Message ID 6fd05f97-7fb9-96d8-cca0-5063be8ad620@gmail.com
State Superseded
Headers show
Series Disable qt5declarative dependency on GUI | expand

Commit Message

Sergey Kuzminov Nov. 13, 2021, 11:45 a.m. UTC
Hello. My English is poor. You need to remove the "select 
BR2_PACKAGE_QT5BASE_GUI" dependency from the 
package/qt5/qt5declarative/Config.in file.

This is needed to build Qt console applications without a GUI. The 
qt5declarative library is needed as a replacement for the outdated 
qt5script.

Some aspects of qt5declarative are not GUI related: 
https://doc.qt.io/qt-5/qjsengine.html

A simple example:

QJSEngine myEngine;
QJSValue three = myEngine.evaluate("1 + 2");

Thanks a lot!

Comments

Peter Seiderer Nov. 14, 2021, 2:56 p.m. UTC | #1
Hello Sergey,

On Sat, 13 Nov 2021 14:45:10 +0300, Кузьминов Сергей <kuzminov.sergey81@gmail.com> wrote:

> Hello. My English is poor. You need to remove the "select 

No problem, every contribution welcome ;-)

> BR2_PACKAGE_QT5BASE_GUI" dependency from the 
> package/qt5/qt5declarative/Config.in file.
> 
> This is needed to build Qt console applications without a GUI. The 
> qt5declarative library is needed as a replacement for the outdated 
> qt5script.
> 
> Some aspects of qt5declarative are not GUI related: 
> https://doc.qt.io/qt-5/qjsengine.html
> 
> A simple example:
> 
> QJSEngine myEngine;
> QJSValue three = myEngine.evaluate("1 + 2");
> 
> Thanks a lot!

Just sent out an improved version of your patch (instead of removing the qt5gui
select entirely move it down to the qt5quick section) to the mailing list (see [1])...

Thanks for suggestion!

Regards,
Peter

[1] https://patchwork.ozlabs.org/project/buildroot/patch/20211114135722.12386-1-ps.report@gmx.net
diff mbox series

Patch

diff -u -r -N a/package/qt5/qt5declarative/Config.in b/package/qt5/qt5declarative/Config.in
--- a/package/qt5/qt5declarative/Config.in	2021-11-10 15:17:38.000000000 +0300
+++ b/package/qt5/qt5declarative/Config.in	2021-11-13 14:36:45.631113368 +0300
@@ -1,7 +1,6 @@ 
 config BR2_PACKAGE_QT5DECLARATIVE
 	bool "qt5declarative"
 	depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE
-	select BR2_PACKAGE_QT5BASE_GUI
 	help
 	  Qt is a cross-platform application and UI framework for
 	  developers using C++.