diff --git a/.gitignore b/.gitignore index dd5aff7ffa..d806acd232 100644 --- a/.gitignore +++ b/.gitignore @@ -41,6 +41,8 @@ Tests/LibWeb/WPT/wpt Tests/LibWeb/WPT/metadata Tests/LibWeb/WPT/MANIFEST.json +Meta/CMake/vcpkg/user-variables.cmake + # Ensure that all files in /Base can be tracked, even if they match one of the above rules !/Base/** diff --git a/Meta/CMake/vcpkg/base-triplets/arm64-osx.cmake b/Meta/CMake/vcpkg/base-triplets/arm64-osx.cmake index 56633d834f..9d0bb3e55c 100644 --- a/Meta/CMake/vcpkg/base-triplets/arm64-osx.cmake +++ b/Meta/CMake/vcpkg/base-triplets/arm64-osx.cmake @@ -2,3 +2,5 @@ set(VCPKG_CMAKE_SYSTEM_NAME Darwin) set(VCPKG_TARGET_ARCHITECTURE arm64) set(VCPKG_OSX_ARCHITECTURES arm64) set(VCPKG_CRT_LINKAGE dynamic) + +include(${CMAKE_CURRENT_LIST_DIR}/../user-variables.cmake OPTIONAL) diff --git a/Meta/CMake/vcpkg/base-triplets/x64-linux.cmake b/Meta/CMake/vcpkg/base-triplets/x64-linux.cmake index d8eb6a0969..6e161607a2 100644 --- a/Meta/CMake/vcpkg/base-triplets/x64-linux.cmake +++ b/Meta/CMake/vcpkg/base-triplets/x64-linux.cmake @@ -1,3 +1,5 @@ set(VCPKG_CMAKE_SYSTEM_NAME Linux) set(VCPKG_TARGET_ARCHITECTURE x64) set(VCPKG_CRT_LINKAGE dynamic) + +include(${CMAKE_CURRENT_LIST_DIR}/../user-variables.cmake OPTIONAL) diff --git a/Meta/CMake/vcpkg/base-triplets/x64-osx.cmake b/Meta/CMake/vcpkg/base-triplets/x64-osx.cmake index 80e1a25c40..5e3bd5316d 100644 --- a/Meta/CMake/vcpkg/base-triplets/x64-osx.cmake +++ b/Meta/CMake/vcpkg/base-triplets/x64-osx.cmake @@ -2,3 +2,5 @@ set(VCPKG_CMAKE_SYSTEM_NAME Darwin) set(VCPKG_TARGET_ARCHITECTURE x64) set(VCPKG_OSX_ARCHITECTURES x86_64) set(VCPKG_CRT_LINKAGE dynamic) + +include(${CMAKE_CURRENT_LIST_DIR}/../user-variables.cmake OPTIONAL)