mirror of https://github.com/UMSKT/xpmgr.git
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
e95c22ca50
|
@ -33,10 +33,14 @@ jobs:
|
||||||
tree /f D:\a\
|
tree /f D:\a\
|
||||||
|
|
||||||
- name: Build xpmgr (x86)
|
- name: Build xpmgr (x86)
|
||||||
run: C:\TDM-GCC-64\bin\g++.exe -m32 -o build\x86\xpmgr_x86 xpmgr.cpp -lole32 -luuid -loleaut32
|
run: |
|
||||||
|
windres icon.rc icon.res
|
||||||
|
C:\TDM-GCC-64\bin\g++.exe -m32 -o build\x86\xpmgr_x86 xpmgr.cpp icon.res -lole32 -luuid -loleaut32
|
||||||
|
|
||||||
- name: Build xpmgr (x64)
|
- name: Build xpmgr (x64)
|
||||||
run: C:\TDM-GCC-64\bin\g++.exe -o build\x64\xpmgr_x64 xpmgr.cpp -lole32 -luuid -loleaut32
|
run: |
|
||||||
|
windres icon.rc icon.res
|
||||||
|
C:\TDM-GCC-64\bin\g++.exe -o build\x64\xpmgr_x64 xpmgr.cpp icon.res -lole32 -luuid -loleaut32
|
||||||
|
|
||||||
- name: Upload build artifact (x86)
|
- name: Upload build artifact (x86)
|
||||||
uses: actions/upload-artifact@v3.1.2
|
uses: actions/upload-artifact@v3.1.2
|
||||||
|
|
Loading…
Reference in New Issue