mirror of
https://gitlab.gnome.org/GNOME/libmks.git
synced 2024-11-05 00:11:16 +00:00
This library provides a "Mouse, Keyboard, and Screen" to QEMU using the D-Bus device support in QEMU and GTK 4.
035d9b7ac2
If the widget gets resized, snapshot would end up being called and we will try to re-create the same texture again which can cause some artifacts |
||
---|---|---|
data/icons | ||
docs | ||
lib | ||
subprojects | ||
tests | ||
tools | ||
.editorconfig | ||
.gitignore | ||
.gitlab-ci.yml | ||
COPYING | ||
libmks.doap | ||
meson_options.txt | ||
meson.build | ||
NEWS | ||
org.gnome.libmks.mks.json | ||
README.md |
libmks
This library provides a "Mouse, Keyboard, and Screen" to QEMU using the D-Bus device support in QEMU and GTK 4.
Documentation
Nightly documentation can be found here.
Unit testing
Be sure you have lcov
package installed on your system if you want coverage data.
meson setup builddir
meson configure -Db_coverage=true builddir # if you want to collect coverage data
meson compile -C builddir
meson test -C builddir --suit "libmks"
rm -rf builddir/subprojects # if you don't want subprojects coverage in the report
ninja coverage-html -C builddir # if you want to generate coverage report
If generated, coverage report will be in builddir/meson-logs/coveragereport/index.html
Testing
By default, QEMU will connect to your user session D-Bus if you do not
provide an address for -display dbus
. Therefore, it is pretty easy to
test things by running QEMU manually and then connecting with the test
program ./tools/mks
.
qemu-img create -f qcow2 fedora.img 30G
qemu-system-x86_64 \
-enable-kvm \
-cpu host \
-device virtio-vga-gl,xres=1920,yres=1080 \
-m 8G \
-smp 4 \
-display dbus,gl=on \
-cdrom Fedora-Workstation.iso \
-hda fedora.img \
-boot d
and then to run the test widget
meson setup build
cd build
ninja
./tools/mks