gtk: use the standard path for including Adwaita header file (#5716)

As pointed out by @tristan957 the standard path for including the
Adwaita header file is simply "adwaita.h". While it may have been
necessary in the past to use a non-standard include path, that no longer
appears to be the case.
pull/5720/head
Jeffrey C. Ollie 2025-02-12 11:29:38 -06:00 committed by GitHub
commit 99cbc06292
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ const build_options = @import("build_options");
pub const c = @cImport({
@cInclude("gtk/gtk.h");
if (build_options.adwaita) {
@cInclude("libadwaita-1/adwaita.h");
@cInclude("adwaita.h");
}
if (build_options.x11) {