X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/d3c599036d40f9aa454e06006fba16bd4c8ff68d..4c2a7d11a3bc74b04978bc50444c676832f49bb6:/WebKit.mk diff --git a/WebKit.mk b/WebKit.mk new file mode 100644 index 0000000..368bbcc --- /dev/null +++ b/WebKit.mk @@ -0,0 +1,11 @@ +ifneq ($(shell pkg-config webkit-1.0 --modversion 2>/dev/null),) +flags += $(shell pkg-config --cflags webkit-1.0) +library += $(shell pkg-config --libs webkit-1.0) +include Execute.mk +else +ifneq ($(shell pkg-config WebKitGtk --modversion 2>/dev/null),) +flags += $(shell pkg-config --cflags WebKitGtk) +library += $(shell pkg-config --libs WebKitGtk) +include Execute.mk +endif +endif