diff --git a/README.md b/README.md index 1eb26401..3ebc8ad9 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ When available, DXVK-NVAPI uses NVIDIA's NVML management library to query temper Like DXVK, this library is being built as a Windows DLL using MinGW. DXVK-NVAPI requires MinGW-w64 compiler and headers version 9 or newer, the Meson build system at least version 0.58 and Python 3 (needed for a prebuild validation script). This project uses git submodules. Ensure to fetch the submodules while or after cloning the repository, e.g. with `git clone --recurse-submodules git@github.com:jp7677/dxvk-nvapi.git`. -The Vulkan Reflex layer has higher requirements: Meson 1.1 and a C++ compiler that supports C++20 standard. It is recommended (and assumed) that the layer is built as Linux-side library, and as such this compiler should target Linux and not be a cross-compiler like MinGW. +The Vulkan Reflex layer has higher requirements: Meson 1.0 and a C++ compiler that supports C++20 standard. It is recommended (and assumed) that the layer is built as Linux-side library, and as such this compiler should target Linux and not be a cross-compiler like MinGW. Run: diff --git a/layer/meson.build b/layer/meson.build index 671237d3..29ebf7f1 100644 --- a/layer/meson.build +++ b/layer/meson.build @@ -3,7 +3,7 @@ project( ['cpp'], default_options: ['cpp_std=c++20'], version: 'v0.8.0', - meson_version: '>= 1.1', + meson_version: '>= 1.0', ) version = vcs_tag( @@ -46,4 +46,4 @@ configure_file( output: 'VkLayer_DXVK_NVAPI_reflex.json', install: true, install_dir: get_option('manifest_install_dir'), -) \ No newline at end of file +) diff --git a/layer/meson.options b/layer/meson_options.txt similarity index 100% rename from layer/meson.options rename to layer/meson_options.txt