From 94b283b1e635fa15f76dea27c8727997a58a951c Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 20 Apr 2022 18:51:23 +0200 Subject: [PATCH] Use native file selector on Linux. --- profiler/build/unix/build.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/profiler/build/unix/build.mk b/profiler/build/unix/build.mk index 667f8246..5a8b94af 100644 --- a/profiler/build/unix/build.mk +++ b/profiler/build/unix/build.mk @@ -27,9 +27,9 @@ else SRC3 += ../../../nfd/nfd_cocoa.m LIBS += -framework CoreFoundation -framework AppKit else - SRC += ../../../nfd/nfd_gtk.cpp - INCLUDES += $(shell pkg-config --cflags gtk+-3.0) - LIBS += $(shell pkg-config --libs gtk+-3.0) + SRC += ../../../nfd/nfd_portal.cpp + INCLUDES += $(shell pkg-config --cflags dbus-1) + LIBS += $(shell pkg-config --libs dbus-1) endif endif