Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Alex J Lennon <[email protected]>
  • Loading branch information
ajlennon committed Jul 20, 2024
1 parent 762be68 commit 5855272
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/actions/compile_gdextension/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,15 +166,25 @@ runs:
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild@v2

- name: Build Opus (Windows)
if: inputs.platform == 'Windows'
- name: Build Opus (Windows Debug)
if: inputs.platform == 'Windows' && inputs.target == "template_debug"
shell: powershell
run: |
echo "::group::🛠️ Opus Compilation 🛠️"
echo "::group::🛠️ Opus Compilation (Windows Debug) 🛠️"
cd opus
cmake -Bbuild -DCMAKE_POSITION_INDEPENDENT_CODE=ON -G "Visual Studio 17 2022" -A x64
cd build
msbuild Opus.sln
msbuild Opus.sln /p:Configuration=Debug
- name: Build Opus (Windows Release)
if: inputs.platform == 'Windows' && inputs.target == "template_release"
shell: powershell
run: |
echo "::group::🛠️ Opus Compilation (Windows Debug) 🛠️"
cd opus
cmake -Bbuild -DCMAKE_POSITION_INDEPENDENT_CODE=ON -G "Visual Studio 17 2022" -A x64
cd build
msbuild Opus.sln /p:Configuration=Release
- name: Build godot-cpp
shell: bash
Expand Down

0 comments on commit 5855272

Please sign in to comment.