genode/repos/libports/run/qt5_samegame.run

100 lines
1.6 KiB
Plaintext

source ${genode_dir}/repos/libports/run/qt5_common.inc
#
# Build
#
set build_components [qt5_build_components feature]
append build_components {
app/qt5/examples/samegame
lib/qt5/qtdeclarative/src/imports/qtquick2
}
build $build_components
create_boot_directory
#
# Create Qt tar archive
#
create_qt5_fs_tar_archive "samegame" "gui quick"
#
# Generate config
#
set config {
<config>
<parent-provides>}
append config [qt5_parent_provides feature]
append config {
</parent-provides>
<default-route>
<any-service> <parent/> <child name="wm"/> <any-child/> </any-service>
</default-route>}
append config [qt5_start_nodes feature]
append config {
<start name="samegame">
<resource name="RAM" quantum="128M"/>
<config>
<libc stdout="/dev/log" stderr="/dev/log">
<vfs>
<dir name="dev"> <log/> </dir>
<tar name="qt5_fs_samegame.tar" />
</vfs>
</libc>
</config>
</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()').
set boot_modules [qt5_boot_modules feature]
append boot_modules {
samegame
freetype.lib.so
gallium.lib.so
icu.lib.so
ld.lib.so
libc.lib.so
libc_lock_pipe.lib.so
libcrypto.lib.so
libm.lib.so
libpng.lib.so
libssl.lib.so
jpeg.lib.so
pthread.lib.so
qt5_core.lib.so
qt5_network.lib.so
qt5_qml.lib.so
qt5_gui.lib.so
qt5_quick.lib.so
qt5_v8.lib.so
qt5_widgets.lib.so
qt5_xml.lib.so
zlib.lib.so
stdcxx.lib.so
qt5_fs_samegame.tar
qt5_qtquick2plugin.lib.so
}
build_boot_image $boot_modules
append qemu_args " -m 256"
run_genode_until forever