diff --git a/README.md b/README.md index 3e243415..c346cd5d 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Before building, make sure your setup is correct : - Install MSVC v143 - VS 2022 C++ x64/x86 build tools and Windows 10/11 SDK. - Install [PowerShell Core](https://github.com/PowerShell/PowerShell/releases) - Install [Python](https://www.python.org/ftp/python/3.12.4/python-3.12.4-amd64.exe) -- Install [CMake](https://cmake.org/download/) 3.20 or later. +- Install [CMake](https://cmake.org/download/) 4.1.2 or later. - Install [DOTNET SDK 8](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) as a VS Build Tool component (if using a standalone implementation, you might need to create a symlink between your custom installation location and the expected location: `C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Sdks\Microsoft.NET.Sdk\Sdk`) - Install [LLVM](https://github.com/llvm/llvm-project/releases/download/llvmorg-20.1.7/LLVM-20.1.7-win64.exe) @@ -37,7 +37,7 @@ Before building, make sure your setup is correct : /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" ``` -- Install CMake through Homebrew : +- Install CMake (version 4.1.2 or later) through Homebrew : ```bash brew update brew install cmake diff --git a/__externals/externals.cmake b/__externals/externals.cmake index 5c475f65..8d5f2e55 100644 --- a/__externals/externals.cmake +++ b/__externals/externals.cmake @@ -36,4 +36,5 @@ target_link_libraries(imported::External_libs INTERFACE GPUOpen::VulkanMemoryAllocator nlohmann_json::nlohmann_json rapidhash + Vulkan::Loader )