second try at fixing win64 build

This commit is contained in:
paul moore
2023-12-14 14:25:35 -08:00
parent 519a52d92c
commit 08341aae30
19 changed files with 504 additions and 14 deletions

View File

@@ -67,8 +67,16 @@ jobs:
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
- name: Build app (debug)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Debug
- name: Build app (x86 debug)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Debug Platform=Win32
- name: Build app (x86 release)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Release Platform=Win32
- name: Build app (x64 release)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Debug Platform=x64
- name: Build app (x64 release)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Release Platform=x64
- name: Build app (release)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Release