From f6cc221303496294c4a3452a2bc8d1afb7ce29ed Mon Sep 17 00:00:00 2001 From: Alejandro Wainzinger Date: Wed, 13 Nov 2024 23:58:08 -0800 Subject: [PATCH] Update README.md for macOS pkg-config --- docs/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/README.md b/docs/README.md index 7825350..6e12260 100644 --- a/docs/README.md +++ b/docs/README.md @@ -17,6 +17,10 @@ git clone https://github.com/Microsoft/vcpkg.git sh ./vcpkg/scripts/bootstrap.sh -disableMetrics export VCPKG_TOOLCHAIN_PATH=`pwd`/vcpkg/scripts/buildsystems/vcpkg.cmake ``` +If building on macOS, ensure that pkg-config is installed. +```shell +brew install pkg-config +``` Note: VCPKG is only required for extensions that want to rely on it for dependency management. If you want to develop an extension without dependencies, or want to do your own dependency management, just skip this step. Note that the example extension uses VCPKG to build with a dependency for instructive purposes, so when skipping this step the build may not work without removing the dependency. ### Build steps