Skip to content

Commit b66d922

Browse files
committed
fix: Correct executable paths for Ninja generator
- Ninja outputs to build/ not build/Release/ - Fixed benchmark executable path - Fixed installer copy paths - Windows build should now complete successfully
1 parent d7deb2f commit b66d922

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
shell: bash
8282
run: |
8383
if [ "${{ matrix.os }}" == "windows-latest" ]; then
84-
EXE_PATH="build/Release/proxpl.exe"
84+
EXE_PATH="build/proxpl.exe"
8585
else
8686
EXE_PATH="build/proxpl"
8787
fi
@@ -95,10 +95,10 @@ jobs:
9595
run: |
9696
choco install innosetup -y
9797
New-Item -ItemType Directory -Force -Path bin
98-
Copy-Item "build/Release/proxpl.exe" -Destination "bin/"
99-
Copy-Item "build/Release/prm.exe" -Destination "bin/"
100-
if (Test-Path "build/Release/proxpl_lib.dll") {
101-
Copy-Item "build/Release/proxpl_lib.dll" -Destination "bin/"
98+
Copy-Item "build/proxpl.exe" -Destination "bin/"
99+
Copy-Item "build/prm.exe" -Destination "bin/"
100+
if (Test-Path "build/proxpl_lib.dll") {
101+
Copy-Item "build/proxpl_lib.dll" -Destination "bin/"
102102
}
103103
iscc setup.iss
104104

0 commit comments

Comments
 (0)