We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02069c1 commit fdac254Copy full SHA for fdac254
.github/workflows/build-ci.yml
@@ -599,6 +599,14 @@ jobs:
599
copy "C:\Windows\System32\VCRUNTIME140.dll" ${{env.CMAKE_CONFIG}}\
600
copy "C:\Windows\System32\VCRUNTIME140_1.dll" ${{env.CMAKE_CONFIG}}\
601
copy "C:\Windows\System32\CONCRT140.dll" ${{env.CMAKE_CONFIG}}\
602
+ echo "🔧 Copying MSVCP140_1.dll..."
603
+ if (Test-Path "C:\Windows\System32\MSVCP140_1.dll") {
604
+ echo "✅ MSVCP140_1.dll is present in System32."
605
+ copy "C:\Windows\System32\MSVCP140_1.dll" ${{env.CMAKE_CONFIG}}\
606
+ } else {
607
+ echo "❌ MSVCP140_1.dll NOT FOUND in System32! This may cause runtime errors."
608
+ exit 1 # Fail the build when the file is missing
609
+ }
610
611
echo "🔧 Copying license file to build directory..."
612
copy ..\COPYING ${{env.CMAKE_CONFIG}}\LICENSE.txt
0 commit comments