Skip to content

Commit 486c83e

Browse files
authored
Simply functions thanks @ELF-Nigel
Reduce protections and kept it simple
2 parents abef3c4 + 9ed83ad commit 486c83e

File tree

3 files changed

+789
-891
lines changed

3 files changed

+789
-891
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build library_x64.lib
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["main"]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build-lib-x64:
12+
runs-on: windows-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
17+
- name: Setup MSBuild
18+
uses: microsoft/setup-msbuild@v2
19+
20+
- name: Build library_x64.lib (Release|x64)
21+
run: >
22+
msbuild .\library.vcxproj
23+
/t:Build
24+
/p:Configuration=Release
25+
/p:Platform=x64
26+
/m
27+
28+
- name: Upload library_x64.lib
29+
uses: actions/upload-artifact@v4
30+
with:
31+
name: library_x64.lib
32+
path: |
33+
**/library_x64.lib

0 commit comments

Comments
 (0)