From 3d0b3a5e1e76fabffe041e5578d2d6cb4c1de52a Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 9 Jun 2025 18:04:31 +0200 Subject: [PATCH] add log for debugging to makefile, where it logs the PKG_CONFIG_PATH value. --- makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/makefile b/makefile index c25a940..5d53af5 100644 --- a/makefile +++ b/makefile @@ -45,6 +45,7 @@ VCPKG_TRIPLET ?= $(strip \ # override the pkg config path, so it is used instead of system packages export PKG_CONFIG_PATH := $(VCPKG_ROOT)/installed/$(VCPKG_TRIPLET)/lib/pkgconfig +$(info using PKG_CONFIG_PATH: '$(PKG_CONFIG_PATH)') else ifneq ($(shell which pkg-config),) $(warning couldn't find VCPKG_ROOT, attempting to use system packages using pkg-config!) else