Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/build-be.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ jobs:
run: |
./build.ps1
Copy-Item -Path ./build/windows/x64/release/doorstop.dll -Destination ./artifacts/release/x64/winhttp.dll
Copy-Item -Path ./build/windows/x64/release/doorstop.pdb -Destination ./artifacts/release/x64/winhttp.pdb
Copy-Item -Path ./build/windows/x64/release/.doorstop_version -Destination ./artifacts/release/x64/.doorstop_version
Copy-Item -Path ./build/windows/x86/release/doorstop.dll -Destination ./artifacts/release/x86/winhttp.dll
Copy-Item -Path ./build/windows/x86/release/doorstop.pdb -Destination ./artifacts/release/x86/winhttp.pdb
Copy-Item -Path ./build/windows/x86/release/.doorstop_version -Destination ./artifacts/release/x86/.doorstop_version
Copy-Item -Path ./assets/windows/doorstop_config.ini -Destination ./artifacts/release/x64/doorstop_config.ini
Copy-Item -Path ./assets/windows/doorstop_config.ini -Destination ./artifacts/release/x86/doorstop_config.ini
Expand All @@ -29,8 +31,10 @@ jobs:
run: |
./build.ps1 -with_logging
Copy-Item -Path ./build/windows/x64/release/doorstop.dll -Destination ./artifacts/verbose/x64/winhttp.dll
Copy-Item -Path ./build/windows/x64/release/doorstop.pdb -Destination ./artifacts/verbose/x64/winhttp.pdb
Copy-Item -Path ./build/windows/x64/release/.doorstop_version -Destination ./artifacts/verbose/x64/.doorstop_version
Copy-Item -Path ./build/windows/x86/release/doorstop.dll -Destination ./artifacts/verbose/x86/winhttp.dll
Copy-Item -Path ./build/windows/x86/release/doorstop.pdb -Destination ./artifacts/verbose/x86/winhttp.pdb
Copy-Item -Path ./build/windows/x86/release/.doorstop_version -Destination ./artifacts/verbose/x86/.doorstop_version
Copy-Item -Path ./assets/windows/doorstop_config.ini -Destination ./artifacts/verbose/x64/doorstop_config.ini
Copy-Item -Path ./assets/windows/doorstop_config.ini -Destination ./artifacts/verbose/x86/doorstop_config.ini
Expand Down
1 change: 1 addition & 0 deletions xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ target("doorstop")
end

if is_plat("windows") then
set_symbols("debug")
add_cxflags("-GS-", "-Ob2", "-MT", "-GL-", "-FS")
add_shflags("-nodefaultlib",
"-entry:DllEntry",
Expand Down