We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15128af commit c36f3c8Copy full SHA for c36f3c8
.github/actions/build/action.yml
@@ -81,6 +81,14 @@ runs:
81
fi
82
shell: ${{ inputs.shell_type }}
83
84
+ - name: Patch glTF-SDK CMakeLists.txt
85
+ run: |
86
+ FILE="3rdparty/glTF-SDK/CMakeLists.txt"
87
+ if grep -q "cmake_minimum_required(VERSION 2.8)" "$FILE"; then
88
+ sed -i '' 's/cmake_minimum_required(VERSION 2.8)/cmake_minimum_required(VERSION 3.5)/' "$FILE"
89
+ fi
90
+ shell: ${{ inputs.shell_type }}
91
+
92
# Windowsのみコンパイラパスを通します。
93
- name: Add msbuild to PATH
94
if: runner.os == 'Windows'
0 commit comments