Update windows.yml

This commit is contained in:
TheTank20 2023-12-21 01:38:05 +00:00 committed by GitHub
parent 85f1d5949d
commit fde2df096c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -34,13 +34,13 @@ jobs:
- name: Build xpmgr (x86)
run: |
windres icon.rc -O coff -o build\icon.res
C:\TDM-GCC-64\bin\g++.exe -m32 -o build\x86\xpmgr_x86 xpmgr.cpp build\icon.res -lole32 -luuid -loleaut32
windres icon.rc -O coff -F pe-i386 -o build\x86\icon_x86.res
C:\TDM-GCC-64\bin\g++.exe -m32 -o build\x86\xpmgr_x86 xpmgr.cpp build\x86\icon_x86.res -lole32 -luuid -loleaut32
- name: Build xpmgr (x64)
run: |
windres icon.rc -O coff -o build\icon.res
C:\TDM-GCC-64\bin\g++.exe -o build\x64\xpmgr_x64 xpmgr.cpp build\icon.res -lole32 -luuid -loleaut32
windres icon.rc -O coff -o build\x64\icon_x64.res
C:\TDM-GCC-64\bin\g++.exe -o build\x64\xpmgr_x64 xpmgr.cpp build\x64\icon_x64.res -lole32 -luuid -loleaut32
- name: Upload build artifact (x86)
uses: actions/upload-artifact@v3.1.2