summaryrefslogtreecommitdiff
path: root/examples/application4/Makefile.example
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2019-02-05 10:27:57 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2019-02-05 10:27:57 +0100
commit803ae6a62f894560945f1c1cc7fe3505ca2387b8 (patch)
treecea1afb2d9365ef80d2bcc3fcf8b4874c57c484d /examples/application4/Makefile.example
parent589cb19715194efa170ed70a464d841a09470d8e (diff)
downloadgtk+-803ae6a62f894560945f1c1cc7fe3505ca2387b8.tar.gz
examples: Rename the pkg-config file for GTK 4
We dropped the '+' and the major.minor version from the pkg-config file name.
Diffstat (limited to 'examples/application4/Makefile.example')
-rw-r--r--examples/application4/Makefile.example4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/application4/Makefile.example b/examples/application4/Makefile.example
index 2714a1decb..97af3fca29 100644
--- a/examples/application4/Makefile.example
+++ b/examples/application4/Makefile.example
@@ -1,7 +1,7 @@
CC ?= gcc
PKGCONFIG = $(shell which pkg-config)
-CFLAGS = $(shell $(PKGCONFIG) --cflags gtk+-4.0)
-LIBS = $(shell $(PKGCONFIG) --libs gtk+-4.0)
+CFLAGS = $(shell $(PKGCONFIG) --cflags gtk4)
+LIBS = $(shell $(PKGCONFIG) --libs gtk4)
GLIB_COMPILE_RESOURCES = $(shell $(PKGCONFIG) --variable=glib_compile_resources gio-2.0)
SRC = exampleapp.c exampleappwin.c main.c