genode/repos/libports/run/qt5_quicktest.run

112 lines
2.0 KiB
Plaintext

source ${genode_dir}/repos/libports/run/qt5_common.inc
#
# Build
#
append build_components [qt5_build_components feature]
append build_components {
lib/mesa/swrast
app/qt5/qt_quicktest
lib/qt5/qtdeclarative/src/imports/qtquick2
}
build $build_components
create_boot_directory
#
# Create Qt tar archive
#
create_qt5_fs_tar_archive "qt_quicktest" "gui quick"
#
# Generate config
#
append config {
<config>
<parent-provides>}
append config [qt5_parent_provides feature]
append config {
</parent-provides>
<default caps="100"/>
<default-route>
<any-service> <parent/> <any-child/> </any-service>
</default-route>}
append config [qt5_start_nodes feature]
append config {
<start name="qt_quicktest" caps="250">
<resource name="RAM" quantum="80M"/>
<config>
<vfs>
<dir name="dev"> <log/> </dir>
<tar name="qt5_fs_qt_quicktest.tar" />
</vfs>
<libc stdout="/dev/log" stderr="/dev/log"/>
</config>
<route>
<service name="Nitpicker"> <child name="wm"/> </service>
<service name="Report" label="shape">
<child name="pointer" label="wm -> qt_quicktest -> shape"/>
</service>
<service name="ROM" label="egl_drv.lib.so"> <parent label="egl_swrast.lib.so" /> </service>
<any-service> <parent /> <any-child/> </any-service>
</route>
</start>
</config>
}
install_config $config
#
# Boot modules
#
# The QtQuick plugin currently needs to be provided both in the file system
# (for Qt) and as ROM module (for 'dlopen()').
append boot_modules [qt5_boot_modules feature]
append boot_modules {
qt_quicktest
egl.lib.so
egl_swrast.lib.so
expat.lib.so
freetype.lib.so
glapi.lib.so
ld.lib.so
libc.lib.so vfs.lib.so
libc_pipe.lib.so
libcrypto.lib.so
libm.lib.so
libpng.lib.so
libssl.lib.so
jpeg.lib.so
mesa.lib.so
pcre16.lib.so
pthread.lib.so
qt5_component.lib.so
qt5_core.lib.so
qt5_network.lib.so
qt5_qml.lib.so
qt5_gui.lib.so
qt5_quick.lib.so
qt5_widgets.lib.so
qt5_xml.lib.so
zlib.lib.so
stdcxx.lib.so
qt5_fs_qt_quicktest.tar
qt5_qtquick2plugin.lib.so
}
build_boot_image $boot_modules
run_genode_until forever