We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65ef1b8 commit 238e96cCopy full SHA for 238e96c
1 file changed
.github/actions/upload-mobile-dlls/action.yml
@@ -56,6 +56,13 @@ runs:
56
- name: Install ninja-build tool
57
uses: seanmiddleditch/gha-setup-ninja@v3
58
59
+ # Mac向けのCMakeのセットアップ
60
+ - name: Setup CMake on macOS
61
+ if: runner.os == 'macOS'
62
+ uses: lukka/get-cmake@latest
63
+ with:
64
+ cmakeVersion: '3.27.x' # cmakeバージョンを指定
65
+
66
- name: Configure CMake for Android
67
if: runner.os == 'Linux'
68
run: >
0 commit comments