=== brainwash_ is now known as brainwash === itc is now known as Curly [07:29] Greetings! [15:05] What -dev packages do I need installed in Xubuntu to develop Gtk 3 apps? I installed libgkt-3-dev but vim and ccls still can't find some stuff. [15:10] I think it is my include path that is still missing stuff. [15:15] Fernando-Basso: "some stuff" [15:15] got a full log output? or something that we could work with? [16:49] brainwash: Gathering more info. My initial vague questions was more like to know if libgtk-3-dev should be enough. [16:50] https://gitlab.com/fernandobasso/memoapp/-/tree/feat-projects-list <-- I am working off this branch. Perhaps my meson.build is missing stuff. [16:52] still not really sure what the actual problem is [16:52] the mentioned package installs these files: [16:53] https://packages.ubuntu.com/focal-updates/amd64/libgtk-3-dev/filelist [16:54] if you want to use other libraries, you have to install them accordingly [16:54] https://paste.debian.net/plain/1175836 Getting these errors for src/main.c [16:55] "apt-file search" helps you search your ubuntu releases' repository for file names. [16:57] glib [16:58] libglib2.0-dev [16:59] Already installed. Then, it must be my meson setup which lacks stuff. [17:00] $ find /usr/include -iname '*gi18n.h*' [17:00] /usr/include/glib-2.0/glib/gi18n.h [17:03] this is probably not the right channel for that type of question [17:03] there should be a meson channel [17:04] Indeed. But at least I now know the dependencies seem to be correctly installed. Thanks! [19:08] The problem was that I was lacking a compile_commands.json in the root directory of the project. All the rest seemed to be fine. Thanks again.