diff options
author | Mohammed Sadiq <sadiq@sadiqpk.org> | 2018-05-07 22:02:10 +0530 |
---|---|---|
committer | Mohammed Sadiq <sadiq@sadiqpk.org> | 2018-05-07 22:29:32 +0530 |
commit | c5976fed9a570ee9b3e39d873f609fa200334eb6 (patch) | |
tree | c40cd8e0574ad095e0c5b32ad30557604ce19e0a /examples/application3 | |
parent | 34d1ebc562c83136cd778749d86abfee58e28627 (diff) | |
download | gtk+-c5976fed9a570ee9b3e39d873f609fa200334eb6.tar.gz |
examples: Fix Makefiles to use gtk4 for build
Diffstat (limited to 'examples/application3')
-rw-r--r-- | examples/application3/Makefile.example | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/application3/Makefile.example b/examples/application3/Makefile.example index 844fffdc17..c0eb251560 100644 --- a/examples/application3/Makefile.example +++ b/examples/application3/Makefile.example @@ -1,7 +1,7 @@ CC ?= gcc PKGCONFIG = $(shell which pkg-config) -CFLAGS = $(shell $(PKGCONFIG) --cflags gtk+-3.0) -LIBS = $(shell $(PKGCONFIG) --libs gtk+-3.0) +CFLAGS = $(shell $(PKGCONFIG) --cflags gtk+-4.0) +LIBS = $(shell $(PKGCONFIG) --libs gtk+-4.0) GLIB_COMPILE_RESOURCES = $(shell $(PKGCONFIG) --variable=glib_compile_resources gio-2.0) SRC = exampleapp.c exampleappwin.c main.c |