Merge pull request #2310 from pm100/vs64

second try at fixing win64 build
This commit is contained in:
Bob Andrews
2023-12-31 18:54:23 +01:00
committed by GitHub
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 -property:Platform=Win32
- name: Build app (x86 release)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Release -property:Platform=Win32
- name: Build app (x64 release)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Debug -property:Platform=x64
- name: Build app (x64 release)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Release -property:Platform=x64
- name: Build app (release)
run: msbuild src\cc65.sln -t:rebuild -property:Configuration=Release