Finally resolve gdkquartz.h include path issue.

By using a different include path for building Gtk.
This commit is contained in:
John Ralls 2023-05-09 13:51:28 -07:00
parent 90472dc481
commit ddf984f42c

View File

@ -25,7 +25,11 @@
#include <AppKit/AppKit.h>
#include <gdk/gdk.h>
#if (defined (GTK_COMPILATION) || defined (GDK_COMPILATION))
#include "gdkquartz.h"
#else
#include <gdk/gdkquartz.h>
#endif
GDK_AVAILABLE_IN_ALL
NSEvent *gdk_quartz_event_get_nsevent (GdkEvent *event);