Skip to content

Commit 86ddc5f

Browse files
committed
Post build fixes
1 parent f2f9287 commit 86ddc5f

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.github/workflows/msbuild.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ on:
1313

1414
env:
1515
# Path to the solution file relative to the root of the project.
16-
VCPKG_DEFAULT_TRIPLET: x64-window
1716
SOLUTION_FILE_PATH: .
1817

1918
# Configuration type to build.

Manager/Manager.vcxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ copy "$(SolutionDir)vcpkg\installed\x64-windows\bin\libssl-3-x64.dll" "$(TargetD
9393
<GenerateDebugInformation>true</GenerateDebugInformation>
9494
<AdditionalDependencies>libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
9595
</Link>
96+
<PostBuildEvent>
97+
<Command>copy "$(SolutionDir)vcpkg\installed\x64-windows\bin\libcrypto-3-x64.dll" "$(TargetDir)"
98+
copy "$(SolutionDir)vcpkg\installed\x64-windows\bin\libssl-3-x64.dll" "$(TargetDir)"</Command>
99+
</PostBuildEvent>
96100
</ItemDefinitionGroup>
97101
<ItemGroup>
98102
<ClCompile Include="DirectX\DirectX.cpp" />

updater/updater.vcxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,10 @@ copy "$(SolutionDir)vcpkg\installed\x64-windows\bin\libssl-3-x64.dll" "$(TargetD
145145
<GenerateDebugInformation>true</GenerateDebugInformation>
146146
<AdditionalDependencies>libcrypto.lib;libssl.lib;%(AdditionalDependencies)</AdditionalDependencies>
147147
</Link>
148+
<PostBuildEvent>
149+
<Command>copy "$(SolutionDir)vcpkg\installed\x64-windows\bin\libcrypto-3-x64.dll" "$(TargetDir)"
150+
copy "$(SolutionDir)vcpkg\installed\x64-windows\bin\libssl-3-x64.dll" "$(TargetDir)"</Command>
151+
</PostBuildEvent>
148152
</ItemDefinitionGroup>
149153
<ItemGroup>
150154
<ClCompile Include="jsoncpp\jsoncpp.cpp" />

0 commit comments

Comments
 (0)