diff --git a/.github/workflows/dev-all.yml b/.github/workflows/dev-all.yml index b79bae5ec..fb9c82159 100644 --- a/.github/workflows/dev-all.yml +++ b/.github/workflows/dev-all.yml @@ -244,7 +244,6 @@ jobs: cd build/dist/bin 7z a ../../../$file_name ./* - name: Test - if: false run: | build/dist/bin/suanPan.exe -v - name: Upload diff --git a/CMakeLists.txt b/CMakeLists.txt index 534d9bfca..e9e490104 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -351,7 +351,7 @@ elseif (COMPILER_IDENTIFIER MATCHES "vs") install(FILES ${svml_dispmd} DESTINATION bin) endif () else () - file(GLOB DLL_FILES Libs/win/lib*.dll) + file(GLOB DLL_FILES Libs/win/lib*.dll Libs/win/vc*.dll Libs/win/msvcp140.dll) install(FILES ${DLL_FILES} DESTINATION bin) endif () endif () diff --git a/Libs/win/msvcp140.dll b/Libs/win/msvcp140.dll new file mode 100644 index 000000000..13fccc9fe Binary files /dev/null and b/Libs/win/msvcp140.dll differ diff --git a/Libs/win/vcruntime140.dll b/Libs/win/vcruntime140.dll new file mode 100644 index 000000000..572b721ae Binary files /dev/null and b/Libs/win/vcruntime140.dll differ diff --git a/Libs/win/vcruntime140_1.dll b/Libs/win/vcruntime140_1.dll new file mode 100644 index 000000000..bf41bc534 Binary files /dev/null and b/Libs/win/vcruntime140_1.dll differ