File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -103,13 +103,18 @@ jobs:
103103 submodules : recursive
104104 fetch-depth : 0
105105
106+ - name : Setup right windows sdk
107+ uses : GuillaumeFalourd/setup-windows10-sdk-action@v2.4
108+ with :
109+ sdk-version : 26100
110+
106111 - name : Set up CMake
107112 uses : lukka/get-cmake@latest
108113 with :
109114 cmakeVersion : ' 3.22.0'
110115
111116 - name : Configure with CMake for ARM64
112- run : cmake -B build -S . -DCMAKE_BUILD_TYPE=Release -A ARM64
117+ run : cmake -B build -S . -DCMAKE_SYSTEM_VERSION="10.0.26100.0" - DCMAKE_BUILD_TYPE=Release -A ARM64
113118
114119 - name : Build the project for ARM64
115120 run : cmake --build build --config Release --target PlayerLink
@@ -158,7 +163,7 @@ jobs:
158163
159164 create-release :
160165 if : startsWith(github.ref, 'refs/tags/')
161- needs : [build-linux, build-windows, build-macos]
166+ needs : [build-linux, build-windows, build-windows-arm64, build- macos]
162167 runs-on : ubuntu-latest
163168 steps :
164169 - name : Download artifacts
Original file line number Diff line number Diff line change @@ -80,9 +80,9 @@ An example on how to add custom apps to the config can be found [here](./setting
80804. Build the project :)
8181 ` ` ` bash
8282 # for a release build
83- cmake --build build --config Release
83+ cmake --build build --config Release --target PlayerLink
8484 # for a debug build
85- cmake --build build
85+ cmake --build build --target PlayerLink
8686 ` ` `
8787
8888# # Contributing
You can’t perform that action at this time.
0 commit comments