diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index be6bc4311..f3877c027 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -54,9 +54,9 @@ jobs: VCPKG_ROOT: ${{ github.workspace }}\vcpkg run: msbuild ccextractor.sln /p:Configuration=Release-Full /p:Platform=x64 working-directory: ./windows - # - name: Display version information - # run: ./ccextractorwinfull.exe --version - # working-directory: ./windows/x64/Release-Full + - name: Display version information + run: ./ccextractorwinfull.exe --version + working-directory: ./windows/x64/Release-Full - uses: actions/upload-artifact@v3 with: name: CCExtractor Windows Release build @@ -96,9 +96,9 @@ jobs: VCPKG_ROOT: ${{ github.workspace }}\vcpkg run: msbuild ccextractor.sln /p:Configuration=Debug-Full /p:Platform=x64 working-directory: ./windows - # - name: Display version information - # run: ./ccextractorwinfull.exe --version - # working-directory: ./windows/x64/Debug-Full + - name: Display version information + run: ./ccextractorwinfull.exe --version + working-directory: ./windows/x64/Debug-Full - uses: actions/upload-artifact@v3 with: name: CCExtractor Windows Debug build diff --git a/windows/ccextractor.vcxproj b/windows/ccextractor.vcxproj index c79f0cd86..d2190f3c2 100644 --- a/windows/ccextractor.vcxproj +++ b/windows/ccextractor.vcxproj @@ -273,7 +273,10 @@ call rust.bat - xcopy /y "C:\Program Files\GPAC\libgpac.dll" "$(OutDir)" + + xcopy /y "$(ProjectDir)\dll\vcruntime140.dll" "$(OutDir)" + xcopy /y "$(ProjectDir)\dll\vcruntime140_1.dll" "$(OutDir)" + xcopy /y "C:\Program Files\GPAC\libgpac.dll" "$(OutDir)" xcopy /y "C:\Program Files\GPAC\OpenSVCDecoder.dll" "$(OutDir)" xcopy /y "C:\Program Files\GPAC\postproc-56.dll" "$(OutDir)" xcopy /y "C:\Program Files\GPAC\swresample-4.dll" "$(OutDir)" @@ -317,7 +320,10 @@ call rust.bat -r - xcopy /y "C:\Program Files\GPAC\libgpac.dll" "$(OutDir)" + + xcopy /y "$(ProjectDir)\dll\vcruntime140.dll" "$(OutDir)" + xcopy /y "$(ProjectDir)\dll\vcruntime140_1.dll" "$(OutDir)" + xcopy /y "C:\Program Files\GPAC\libgpac.dll" "$(OutDir)" xcopy /y "C:\Program Files\GPAC\OpenSVCDecoder.dll" "$(OutDir)" xcopy /y "C:\Program Files\GPAC\postproc-56.dll" "$(OutDir)" xcopy /y "C:\Program Files\GPAC\swresample-4.dll" "$(OutDir)" diff --git a/windows/dll/vcruntime140.dll b/windows/dll/vcruntime140.dll new file mode 100644 index 000000000..96b79d7ed Binary files /dev/null and b/windows/dll/vcruntime140.dll differ diff --git a/windows/dll/vcruntime140_1.dll b/windows/dll/vcruntime140_1.dll new file mode 100644 index 000000000..23396f515 Binary files /dev/null and b/windows/dll/vcruntime140_1.dll differ