Skip to content

Commit 0f51576

Browse files
committed
docs: have a notice about ARM64 in the main README.md
1 parent 6884228 commit 0f51576

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The toolset available here aids in the process to download, build and install Lu
2424
>
2525
> Among all the possible versions of Visual Studio, **Visual Studio Community** edition or **Visual Studio Build Tools** are the preferred choices for individuals.
2626
27-
1. Visit [https://visualstudio.microsoft.com](https://visualstudio.microsoft.com), download and install the most recent Microsoft Visual Studio C/C++ Build Tools for x86/x64 native desktop development (MSVC), together with the most recent Windows SDK for your operating system:
27+
1. Visit [https://visualstudio.microsoft.com](https://visualstudio.microsoft.com), download and install the most recent Microsoft Visual Studio C/C++ Build Tools for native desktop development (MSVC), together with the most recent Windows SDK for your operating system:
2828
* **Step 1**: In the startup screen of the latest ```Visual Studio Installer```, switch to ```Individual components``` tab in the top;
2929

3030
![Step 1: Switch to Individual components tab](https://github.com/user-attachments/assets/f238d870-3ce9-4f69-8539-3c4484e08ec2)
@@ -35,7 +35,7 @@ The toolset available here aids in the process to download, build and install Lu
3535
![Step 2: Search for "Windows SDK"; Step 3: Select the most recent;](https://github.com/user-attachments/assets/5e45e783-129c-484e-a0e4-f557da6e8d5f)
3636

3737
* **Step 4**: Search for ```latest MSVC Build Tools```;
38-
* **Step 5**: Select the ```latest``` MSVC x86/x64 build tools available;
38+
* **Step 5**: Select the ```latest``` MSVC x86/x64 build tools available for x86 or x64 operating system, or the ```latest``` MSVC ARM64 build tools available for Windows on ARM64;
3939
* **Step 6**: In the right panel, verify that the ```Individual components``` selection shows the latest Build Tools and Windows SDK;
4040
* **Step 7**: Hit ```Install``` button and await the installation.
4141

docs/UsageCI.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ jobs:
107107
- name: Setup Lua ${{ matrix.lua-version }} for CMake
108108
shell: pwsh
109109
run: |
110-
$cmake_module_path = "$env:CMAKE_MODULE_PATH";
111-
Add-Content "${{ github.env }}" "CMAKE_MODULE_PATH=${{ env.LUA_DIR }};${cmake_module_path}";
110+
$cmake_module_path = "$env:CMAKE_PREFIX_PATH";
111+
Add-Content "${{ github.env }}" "CMAKE_PREFIX_PATH=${{ env.LUA_DIR }};${cmake_module_path}";
112112
113113
- name: Setup Lua ${{ matrix.lua-version }} for pkg-config
114114
shell: pwsh
@@ -216,8 +216,8 @@ jobs:
216216
- name: Setup Lua ${{ matrix.lua-version }} for CMake
217217
shell: pwsh
218218
run: |
219-
$cmake_module_path = "$env:CMAKE_MODULE_PATH";
220-
Add-Content "${{ github.env }}" "CMAKE_MODULE_PATH=${{ env.LUA_DIR }};${cmake_module_path}";
219+
$cmake_module_path = "$env:CMAKE_PREFIX_PATH";
220+
Add-Content "${{ github.env }}" "CMAKE_PREFIX_PATH=${{ env.LUA_DIR }};${cmake_module_path}";
221221
222222
- name: Setup Lua ${{ matrix.lua-version }} for pkg-config
223223
shell: pwsh

0 commit comments

Comments
 (0)