Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.bat5
-rw-r--r--distrib/mpc-hc_setup.iss4
2 files changed, 8 insertions, 1 deletions
diff --git a/build.bat b/build.bat
index 4f98b019c..6879f7c16 100644
--- a/build.bat
+++ b/build.bat
@@ -392,7 +392,8 @@ IF NOT EXIST "%PCKG_NAME%" MD "%PCKG_NAME%"
IF /I "%NAME%" == "MPC-HC" (
IF NOT DEFINED MPCHC_LITE (
- IF NOT EXIST "%PCKG_NAME%\Lang" MD "%PCKG_NAME%\Lang"
+ IF NOT EXIST "%PCKG_NAME%\Lang" MD "%PCKG_NAME%\Lang"
+ IF NOT EXIST "%PCKG_NAME%\LAVFilters" MD "%PCKG_NAME%\LAVFilters"
)
IF /I "%ARCH%" == "x64" (
COPY /Y /V "%~1_%ARCH%\mpc-hc64.exe" "%PCKG_NAME%\mpc-hc64.exe" >NUL
@@ -402,6 +403,8 @@ IF /I "%NAME%" == "MPC-HC" (
COPY /Y /V "%~1_%ARCH%\mpciconlib.dll" "%PCKG_NAME%\*.dll" >NUL
IF NOT DEFINED MPCHC_LITE (
COPY /Y /V "%~1_%ARCH%\Lang\mpcresources.??.dll" "%PCKG_NAME%\Lang\mpcresources.??.dll" >NUL
+ COPY /Y /V "%~1_%ARCH%\LAVFilters\*.ax" "%PCKG_NAME%\LAVFilters" >NUL
+ COPY /Y /V "%~1_%ARCH%\LAVFilters\*.dll" "%PCKG_NAME%\LAVFilters" >NUL
)
COPY /Y /V "%~1_%ARCH%\D3DCompiler_43.dll" "%PCKG_NAME%\D3DCompiler_43.dll" >NUL
COPY /Y /V "%~1_%ARCH%\d3dx9_43.dll" "%PCKG_NAME%\d3dx9_43.dll" >NUL
diff --git a/distrib/mpc-hc_setup.iss b/distrib/mpc-hc_setup.iss
index aa1cc3690..d9a096e42 100644
--- a/distrib/mpc-hc_setup.iss
+++ b/distrib/mpc-hc_setup.iss
@@ -230,6 +230,10 @@ Name: reset_settings; Description: {cm:tsk_ResetSettings}; GroupDescript
#if localize == "true"
Source: {#bindir}\Lang\mpcresources.??.dll; DestDir: {app}\Lang; Components: mpcresources; Flags: ignoreversion
#endif
+#ifndef MPCHC_LITE
+Source: {#bindir}\LAVFilters\*.dll; DestDir: {app}\LAVFilters; Components: main; Flags: ignoreversion
+Source: {#bindir}\LAVFilters\*.ax; DestDir: {app}\LAVFilters; Components: main; Flags: ignoreversion
+#endif
Source: {#bindir}\D3DCompiler_{#MPC_DX_SDK_NUMBER}.dll; DestDir: {app}; Components: main; Flags: ignoreversion
Source: {#bindir}\d3dx9_{#MPC_DX_SDK_NUMBER}.dll; DestDir: {app}; Components: main; Flags: ignoreversion
Source: {#bindir}\mpciconlib.dll; DestDir: {app}; Components: mpciconlib; Flags: ignoreversion