gnome-builder

Flatpak (flatpak-build) fatal error when building submodules

橙三吉。 提交于 2019-12-24 09:08:15
问题 Following on from here, when using OpenSUSE Tumbleweed I cannot get flatpak-builder to compile submodule dependencies. I first noticed this issue when developing a console application within Gnome Builder using the Vala dependencies Gee and GXml. As a test, I have installed org.gnome.Books.json and issued the following command (as documented here): $ flatpak-builder --repo=repo books-app org.gnome.Books.json The outcome is the same as I observed when developing my own application, the fatal

I added a gtk widget to the main window UI file, but it doesn't show up

試著忘記壹切 提交于 2019-12-11 15:59:19
问题 I am trying to add a GtkImage to my main window *.ui file, which was made using the GNOME Builder project template. <?xml version="1.0" encoding="UTF-8"?> <interface> <requires lib="gtk+" version="3.20"/> <template class="PodiumWindow" parent="GtkApplicationWindow"> <property name="default-width">600</property> <property name="default-height">300</property> <child type="titlebar"> <object class="GtkHeaderBar" id="headerBar"> <property name="visible">True</property> <property name="show-close

Flatpak Meson Not Finding Vala Libraries From Gnome Builder

随声附和 提交于 2019-12-01 06:59:26
From Linux, I'm using Meson (0.44.0) within Gnome Builder (3.26.4) for a console program that will use Gee and GXml. My intent is to write this in Genie. When I use Meson within Gnome Builder it fails but the same succeeds when invoked from the command line using valac (0.38.8) as follows: valac --pkg=gtk+-3.0 --pkg=gee-0.8 --pkg=gxml-0.16 main.gs There is no error from the above. I've tried setting up meson.build with gee and gxml as dependency and alternatively as vala_args . Same error. Checking pkg-config, I get the following: $ pkg-config --libs gxml-0.16 -L/usr/local/lib64 -lgxml-0.16

Flatpak Meson Not Finding Vala Libraries From Gnome Builder

元气小坏坏 提交于 2019-12-01 05:24:04
问题 From Linux, I'm using Meson (0.44.0) within Gnome Builder (3.26.4) for a console program that will use Gee and GXml. My intent is to write this in Genie. When I use Meson within Gnome Builder it fails but the same succeeds when invoked from the command line using valac (0.38.8) as follows: valac --pkg=gtk+-3.0 --pkg=gee-0.8 --pkg=gxml-0.16 main.gs There is no error from the above. I've tried setting up meson.build with gee and gxml as dependency and alternatively as vala_args . Same error.