Hi,
I am trying to setup a build environment for KiCad according to the official build documentation on a new Win11 pro computer. Basically a clean install. There is no (other) version of python installed on the machine.
Kicad Source is cloned from git to C:\dev\
.
Vcpkg resides in C:\dev\vcpkg
by cloning from github (as in description).
C:\dev\CMakeSettings.json
has path to vcpkg:
CMakesettings.json is updated -
"configurations": [
{
"name": "x64-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64", "vcpkg" ],
"buildRoot": "${env.BuildDir}\\${name}",
"installRoot": "${env.InstallDir}\\${name}",
"cmakeCommandArgs": "-DSWIG_EXECUTABLE=C:\\\\Users\\\\vvams\\\\Downloads\\\\swigwin-4.3.0\\\\swigwin-4.3.0\\\\swig.exe",
"buildCommandArgs": "-v",
"ctestCommandArgs": "",
"variables": [
{
"name": "KICAD_BUILD_QA_TESTS",
"value": "False",
"type": "BOOL"
},
{
"name": "KICAD_WIN32_DPI_AWARE",
"value": "ON",
"type": "BOOL"
}
],
"cmakeToolchain": "${env.VcPkgDir}/scripts/buildsystems/vcpkg.cmake"
},
{
"name": "x64-Release",
"generator": "Ninja",
"configurationType": "RelWithDebInfo",
"inheritEnvironments": [ "msvc_x64_x64", "vcpkg" ],
"buildRoot": "${env.BuildDir}\\${name}",
"installRoot": "${env.InstallDir}\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "-v",
"ctestCommandArgs": "",
"variables": [
{
"name": "KICAD_BUILD_QA_TESTS",
"value": "False",
"type": "BOOL"
},
{
"name": "KICAD_WIN32_DPI_AWARE",
"value": "ON",
"type": "BOOL"
}
],
"cmakeToolchain": "${env.VcPkgDir}/scripts/buildsystems/vcpkg.cmake"
}
]
}
CMake gives me 2 errors -
1> CMake generation started for configuration: 'x64-Debug'.
1> Environment settings:
1> BuildDir=C:\dev\kicad\build
1> InstallDir=C:\dev\kicad\build\install
1> VcPkgDir=C:\dev\vcpkg
1> Command line: "C:\windows\system32\cmd.exe" /c "%SYSTEMROOT%\System32\chcp.com 65001 >NUL && "C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\CMake\bin\cmake.exe" -G "Ninja" -DCMAKE_BUILD_TYPE:STRING="Debug" -DCMAKE_INSTALL_PREFIX:PATH="C:\dev\kicad\build\install\x64-Debug" -DCMAKE_TOOLCHAIN_FILE:FILEPATH="C:\dev\vcpkg/scripts/buildsystems/vcpkg.cmake" -DKICAD_BUILD_QA_TESTS:BOOL="False" -DKICAD_WIN32_DPI_AWARE:BOOL="ON" -DCMAKE_C_COMPILER:FILEPATH="C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.36.32532/bin/Hostx64/x64/cl.exe" -DCMAKE_CXX_COMPILER:FILEPATH="C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.36.32532/bin/Hostx64/x64/cl.exe" -DSWIG_EXECUTABLE=C:\\Users\\vvams\\Downloads\\swigwin-4.3.0\\swigwin-4.3.0\\swig.exe -DCMAKE_MAKE_PROGRAM="C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\Ninja\ninja.exe" "C:\dev\kicad" 2>&1"
1> Working directory: C:\dev\kicad\build\x64-Debug
1> [CMake] CMake Deprecation Warning at CMakeLists.txt:28 (cmake_policy):
1> [CMake] The OLD behavior for policy CMP0116 will be removed from a future version
1> [CMake] of CMake.
1> [CMake]
1> [CMake] The cmake-policies(7) manual explains that the OLD behaviors of all
1> [CMake] policies are deprecated and that a policy should be set to OLD only under
1> [CMake] specific short-term circumstances. Projects should be ported to the NEW
1> [CMake] behavior and not rely on setting a policy to OLD.
1> [CMake]
1> [CMake]
1> [CMake] CMake Deprecation Warning at CMakeLists.txt:32 (cmake_policy):
1> [CMake] The OLD behavior for policy CMP0113 will be removed from a future version
1> [CMake] of CMake.
1> [CMake]
1> [CMake] The cmake-policies(7) manual explains that the OLD behaviors of all
1> [CMake] policies are deprecated and that a policy should be set to OLD only under
1> [CMake] specific short-term circumstances. Projects should be ported to the NEW
1> [CMake] behavior and not rely on setting a policy to OLD.
1> [CMake]
1> [CMake]
1> [CMake] -- Running vcpkg install
1> [CMake] Detecting compiler hash for triplet x64-windows...
1> [CMake] Compiler found: C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.43.34808/bin/Hostx64/x64/cl.exe
1> [CMake] The following packages will be built and installed:
1> [CMake] cairo[core,fontconfig,freetype]:x64-windows@1.18.2 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\84c6e863f1f936bd0db07b3302e568ac1c98531c
1> [CMake] curl[core,non-http,schannel,ssl,sspi]:x64-windows@8.11.1#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\d2c7cc1c54b17f6d1814d16c46b709767090d4d6
1> [CMake] * egl-registry:x64-windows@2024-01-25 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\d883db43133dd223c4ffdbef4193943f6784d43a
1> [CMake] gettext[core,tools]:x64-windows@0.22.5#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\1c1122632dae7ab9078655ee52e41c415ee4cfb4
1> [CMake] * gettext-libintl:x64-windows@0.22.5#2 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\f41e983c85004eb6ee8d290ecb2465832fce8c00
1> [CMake] glew:x64-windows@2.2.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\5962cb12ac4e64bd77dc5325a7a3bd75261f26e8
1> [CMake] glm:x64-windows@0.9.9.8#2 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\b940020b1f2958fcc468c615becec6ca5ad3bff5
1> [CMake] harfbuzz[core,freetype]:x64-windows@10.2.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\3d1a67e6f25f5a73ebcb436e7b78710a29d40072
1> [CMake] * http-parser:x64-windows@2.9.4#3 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\8da57f708336be4ff2f58ab004147f01708a5cac
1> [CMake] icu[core,tools]:x64-windows@74.2#4 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\291bbc492b8f73dea0dbd12051e9b12b21aef900
1> [CMake] * libffi:x64-windows@3.4.6 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\0ad381012102db5da196161ba7fc0a03a4dcb982
1> [CMake] libgit2[core,pcre,ssh,ssl,winhttp]:x64-windows@1.9.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\102403456a0c59d10e9949dc2513b9176d6f02d2
1> [CMake] * libiconv:x64-windows@1.17#5 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\22817264465e37fbbde994c614aae7d07bc727c0
1> [CMake] * libjpeg-turbo:x64-windows@3.1.0#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\6180688844449e5724d6dc8eb49ab90124438ce2
1> [CMake] * liblzma:x64-windows@5.4.4 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\f285b7c4ffa2cc065c7c6fec4b61006f7fa2714e
1> [CMake] * libssh2[core,openssl,zlib]:x64-windows@1.11.1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\0711b8dc1f6946f612076f4b60a60fa022e8e8e7
1> [CMake] * nanosvg:x64-windows@2023-12-29 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\6fbdab7bdd32d0755336f499d49f9a0f31e8fb36
1> [CMake] ngspice[codemodels,core]:x64-windows@44#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\3b8d0d9fc63a5923b0f9ec1d3990cbc0d3a44e81
1> [CMake] nng:x64-windows@1.10.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\7d629a2e798d0ac8429b18eeafeae40821e5afbf
1> [CMake] opencascade[core,freetype,rapidjson]:x64-windows@7.8.1#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\cdc120cdc2fb2a7eae6d4542352413c0f5f42bac
1> [CMake] opengl:x64-windows@2022-12-04#3 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\c3ae71738f88449ebcd781cef60d9a253fa091d4
1> [CMake] * opengl-registry:x64-windows@2024-02-10#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\22f7aa58ee78c9f0db904b6251e9265f2be26f9d
1> [CMake] openssl:x64-windows@3.4.0#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\facccb0b0c47f9804b6e336096d0985c3e541eec
1> [CMake] * pcre:x64-windows@8.45#7 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\efb74e04576fa0da0587cdb06cbfeef72a8d9218
1> [CMake] * pcre2[core,jit,platform-default-features]:x64-windows@10.43 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\eeb6bcd249a7a2fd9be3f305c694279227fdf6cc
1> [CMake] * pkgconf:x64-windows@2.3.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\ae3886d8a627ec99dd18890389b6d5d331e29799
1> [CMake] protobuf:x64-windows@3.21.12#4 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\7a874adf6e222ee14c665bd62a2b04a0d65ea1b1
1> [CMake] python3:x64-windows@3.11.5 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\e1ab8db565ccc29b7d39c57acb02724569ad5a62
1> [CMake] * rapidjson:x64-windows@2023-07-17#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\a3dfe7dca3a1a27564b1fc5a9aea657cd9dae01c
1> [CMake] sqlite3[core,fts3,fts4,fts5,json1,rtree,session]:x64-windows@3.48.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\035eb1c851406b84ac0e242d73446fba15f7980a
1> [CMake] * tiff[core,jpeg,lzma,zip]:x64-windows@4.7.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\54c1c045d21157ce32df8a1c8b7b9d57b0d5d6ce
1> [CMake] * vcpkg-get-python-packages:x64-windows@2024-01-24 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\9205135e78e0cad47fd43c2f7abada1f4fbbdbaa
1> [CMake] * vcpkg-msbuild:x64-windows@2023-08-08 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\09443e951188f7850761144fde77fe9edf0dceba
1> [CMake] * vcpkg-pkgconfig-get-modules:x64-windows@2024-04-03 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\6845369c8cb7d3c318e8e3ae92fd2b7570a756ca
1> [CMake] * webview2:x64-windows@1.0.2277.86 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\34a7646d266b69d0ed89757d83d56757e6e93507
1> [CMake] * wil:x64-windows@1.0.240803.1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\b9cb71d01ed196fdfae55fda3d6b0fb9f6a469fe
1> [CMake] wxpython:x64-windows@4.2.2#2 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\5c841acc8693b6cbeedabf0900a5c1c7d8da60ea
1> [CMake] wxwidgets[core,debug-support,media,sound,webview]:x64-windows@3.2.6#2 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\865ecd5f5b347883686cff085b1a37516b424f41
1> [CMake] zstd:x64-windows@1.5.6 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\796171d4d359b6786b8e1380fb6da8e677a9087b
1> [CMake] Additional packages (*) will be modified to complete this operation.
1> [CMake] Restored 0 package(s) from C:\Users\vvams\AppData\Local\vcpkg\archives in 512 us. Use --debug to see more details.
1> [CMake] Installing 1/39 cairo[core,fontconfig,freetype]:x64-windows@1.18.2...
1> [CMake] Building cairo[core,fontconfig,freetype]:x64-windows@1.18.2...
1> [CMake] C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\84c6e863f1f936bd0db07b3302e568ac1c98531c: info: installing overlay port from here
1> [CMake] CMake Error at C:/dev/kicad/build/x64-Debug/vcpkg_installed/x64-windows/share/vcpkg-tool-meson/vcpkg-port-config.cmake:60 (message):
1> [CMake] Found Python version ' at
1> [CMake] C:/dev/vcpkg/downloads/tools/python/python-3.12.7-x64-1/python.exe' is
1> [CMake] insufficient for meson. meson requires at least version '3.7'
1> [CMake] Call Stack (most recent call first):
1> [CMake] scripts/ports.cmake:199 (include)
1> [CMake] error: building cairo:x64-windows failed with: BUILD_FAILED
WT.mc_id=vcpkg_inproduct_cli for more information.
1> [CMake] Elapsed time to handle cairo:x64-windows: 38.8 ms
1> [CMake] Please ensure you're using the latest port files with `git pull` and `vcpkg update`.
1> [CMake]
1> [CMake] -- Running vcpkg install - failed
1> [CMake] CMake Error at C:/dev/vcpkg/scripts/buildsystems/vcpkg.cmake:938 (message):
1> [CMake] vcpkg install failed. See logs for more information:
1> [CMake] C:\dev\kicad\build\x64-Debug\vcpkg-manifest-install.log
1> [CMake] Call Stack (most recent call first):
1> [CMake] C:/Program Files/Microsoft Visual Studio/2022/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:146 (include)
1> [CMake] CMakeLists.txt:47 (project)
1> [CMake] -- Configuring incomplete, errors occurred!
1> 'C:\windows\system32\cmd.exe' '/c "%SYSTEMROOT%\System32\chcp.com 65001 >NUL && "C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\CMake\bin\cmake.exe" -G "Ninja" -DCMAKE_BUILD_TYPE:STRING="Debug" -DCMAKE_INSTALL_PREFIX:PATH="C:\dev\kicad\build\install\x64-Debug" -DCMAKE_TOOLCHAIN_FILE:FILEPATH="C:\dev\vcpkg/scripts/buildsystems/vcpkg.cmake" -DKICAD_BUILD_QA_TESTS:BOOL="False" -DKICAD_WIN32_DPI_AWARE:BOOL="ON" -DCMAKE_C_COMPILER:FILEPATH="C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.36.32532/bin/Hostx64/x64/cl.exe" -DCMAKE_CXX_COMPILER:FILEPATH="C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.36.32532/bin/Hostx64/x64/cl.exe" -DSWIG_EXECUTABLE=C:\\Users\\vvams\\Downloads\\swigwin-4.3.0\\swigwin-4.3.0\\swig.exe -DCMAKE_MAKE_PROGRAM="C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\Ninja\ninja.exe" "C:\dev\kicad" 2>&1"' execution failed with error: ''C:\windows\system32\cmd.exe' '/c "%SYSTEMROOT%\System32\chcp.com 65001 >NUL && "C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\CMake\bin\cmake.exe" -G "Ninja" -DCMAKE_BUILD_TYPE:STRING="Debug" -DCMAKE_INSTALL_PREFIX:PATH="C:\dev\kicad\build\install\x64-Debug" -DCMAKE_TOOLCHAIN_FILE:FILEPATH="C:\dev\vcpkg/scripts/buildsystems/vcpkg.cmake" -DKICAD_BUILD_QA_TESTS:BOOL="False" -DKICAD_WIN32_DPI_AWARE:BOOL="ON" -DCMAKE_C_COMPILER:FILEPATH="C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.36.32532/bin/Hostx64/x64/cl.exe" -DCMAKE_CXX_COMPILER:FILEPATH="C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.36.32532/bin/Hostx64/x64/cl.exe" -DSWIG_EXECUTABLE=C:\\Users\\vvams\\Downloads\\swigwin-4.3.0\\swigwin-4.3.0\\swig.exe -DCMAKE_MAKE_PROGRAM="C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\Ninja\ninja.exe" "C:\dev\kicad" 2>&1"' returned with exit code: 1'.
vcpkg was checked out from github ( git pull )
The 2 log error files are -
vcpkg-manifest-install.log :
Detecting compiler hash for triplet x64-windows...
Compiler found: C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.43.34808/bin/Hostx64/x64/cl.exe
The following packages will be built and installed:
cairo[core,fontconfig,freetype]:x64-windows@1.18.2 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\84c6e863f1f936bd0db07b3302e568ac1c98531c
curl[core,non-http,schannel,ssl,sspi]:x64-windows@8.11.1#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\d2c7cc1c54b17f6d1814d16c46b709767090d4d6
* egl-registry:x64-windows@2024-01-25 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\d883db43133dd223c4ffdbef4193943f6784d43a
gettext[core,tools]:x64-windows@0.22.5#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\1c1122632dae7ab9078655ee52e41c415ee4cfb4
* gettext-libintl:x64-windows@0.22.5#2 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\f41e983c85004eb6ee8d290ecb2465832fce8c00
glew:x64-windows@2.2.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\5962cb12ac4e64bd77dc5325a7a3bd75261f26e8
glm:x64-windows@0.9.9.8#2 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\b940020b1f2958fcc468c615becec6ca5ad3bff5
harfbuzz[core,freetype]:x64-windows@10.2.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\3d1a67e6f25f5a73ebcb436e7b78710a29d40072
* http-parser:x64-windows@2.9.4#3 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\8da57f708336be4ff2f58ab004147f01708a5cac
icu[core,tools]:x64-windows@74.2#4 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\291bbc492b8f73dea0dbd12051e9b12b21aef900
* libffi:x64-windows@3.4.6 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\0ad381012102db5da196161ba7fc0a03a4dcb982
libgit2[core,pcre,ssh,ssl,winhttp]:x64-windows@1.9.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\102403456a0c59d10e9949dc2513b9176d6f02d2
* libiconv:x64-windows@1.17#5 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\22817264465e37fbbde994c614aae7d07bc727c0
* libjpeg-turbo:x64-windows@3.1.0#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\6180688844449e5724d6dc8eb49ab90124438ce2
* liblzma:x64-windows@5.4.4 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\f285b7c4ffa2cc065c7c6fec4b61006f7fa2714e
* libssh2[core,openssl,zlib]:x64-windows@1.11.1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\0711b8dc1f6946f612076f4b60a60fa022e8e8e7
* nanosvg:x64-windows@2023-12-29 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\6fbdab7bdd32d0755336f499d49f9a0f31e8fb36
ngspice[codemodels,core]:x64-windows@44#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\3b8d0d9fc63a5923b0f9ec1d3990cbc0d3a44e81
nng:x64-windows@1.10.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\7d629a2e798d0ac8429b18eeafeae40821e5afbf
opencascade[core,freetype,rapidjson]:x64-windows@7.8.1#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\cdc120cdc2fb2a7eae6d4542352413c0f5f42bac
opengl:x64-windows@2022-12-04#3 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\c3ae71738f88449ebcd781cef60d9a253fa091d4
* opengl-registry:x64-windows@2024-02-10#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\22f7aa58ee78c9f0db904b6251e9265f2be26f9d
openssl:x64-windows@3.4.0#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\facccb0b0c47f9804b6e336096d0985c3e541eec
* pcre:x64-windows@8.45#7 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\efb74e04576fa0da0587cdb06cbfeef72a8d9218
* pcre2[core,jit,platform-default-features]:x64-windows@10.43 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\eeb6bcd249a7a2fd9be3f305c694279227fdf6cc
* pkgconf:x64-windows@2.3.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\ae3886d8a627ec99dd18890389b6d5d331e29799
protobuf:x64-windows@3.21.12#4 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\7a874adf6e222ee14c665bd62a2b04a0d65ea1b1
python3:x64-windows@3.11.5 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\e1ab8db565ccc29b7d39c57acb02724569ad5a62
* rapidjson:x64-windows@2023-07-17#1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\a3dfe7dca3a1a27564b1fc5a9aea657cd9dae01c
sqlite3[core,fts3,fts4,fts5,json1,rtree,session]:x64-windows@3.48.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\035eb1c851406b84ac0e242d73446fba15f7980a
* tiff[core,jpeg,lzma,zip]:x64-windows@4.7.0 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\54c1c045d21157ce32df8a1c8b7b9d57b0d5d6ce
* vcpkg-get-python-packages:x64-windows@2024-01-24 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\9205135e78e0cad47fd43c2f7abada1f4fbbdbaa
* vcpkg-msbuild:x64-windows@2023-08-08 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\09443e951188f7850761144fde77fe9edf0dceba
* vcpkg-pkgconfig-get-modules:x64-windows@2024-04-03 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\6845369c8cb7d3c318e8e3ae92fd2b7570a756ca
* webview2:x64-windows@1.0.2277.86 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\34a7646d266b69d0ed89757d83d56757e6e93507
* wil:x64-windows@1.0.240803.1 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\b9cb71d01ed196fdfae55fda3d6b0fb9f6a469fe
wxpython:x64-windows@4.2.2#2 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\5c841acc8693b6cbeedabf0900a5c1c7d8da60ea
wxwidgets[core,debug-support,media,sound,webview]:x64-windows@3.2.6#2 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\865ecd5f5b347883686cff085b1a37516b424f41
zstd:x64-windows@1.5.6 -- C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\796171d4d359b6786b8e1380fb6da8e677a9087b
Additional packages (*) will be modified to complete this operation.
Restored 0 package(s) from C:\Users\vvams\AppData\Local\vcpkg\archives in 528 us. Use --debug to see more details.
Installing 1/39 cairo[core,fontconfig,freetype]:x64-windows@1.18.2...
Building cairo[core,fontconfig,freetype]:x64-windows@1.18.2...
C:\Users\vvams\AppData\Local\vcpkg\registries\git-trees\84c6e863f1f936bd0db07b3302e568ac1c98531c: info: installing overlay port from here
python version string : ' '
cleaned python version string : ''
CMake Error at C:/dev/kicad/build/x64-Debug/vcpkg_installed/x64-windows/share/vcpkg-tool-meson/vcpkg-port-config.cmake:63 (message):
Found Python version ' at
C:/dev/vcpkg/downloads/tools/python/python-3.12.7-x64-1/python.exe' is
insufficient for meson. meson requires at least version '3.7'
Call Stack (most recent call first):
scripts/ports.cmake:199 (include)
error: building cairo:x64-windows failed with: BUILD_FAILED
Elapsed time to handle cairo:x64-windows: 39.7 ms
Please ensure you're using the latest port files with `git pull` and `vcpkg update`.
Then check for known issues at:
Possible Error Source :
1> [CMake] CMake Error at C:/dev/kicad/build/x64-Debug/vcpkg_installed/x64-windows/share/vcpkg-tool-meson/vcpkg-port-config.cmake:60 (message):
1> [CMake] Found Python version ' at
1> [CMake] C:/dev/vcpkg/downloads/tools/python/python-3.12.7-x64-1/python.exe' is
1> [CMake] insufficient for meson. meson requires at least version '3.7'