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:
authorXhmikosR <xhmikosr@users.sourceforge.net>2013-09-22 11:25:33 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2013-09-29 19:19:07 +0400
commit56cc28fb555f5ff6dcb2bf1df1b8a9042a40c403 (patch)
tree269f554c87fadfe4a1f474bb32264806d00bdf13 /src/filters/transform/VSFilter
parent27bb09712f18edd3eeb92c1cead2a70ab82cd149 (diff)
Remove VS2010 support.
Also remove the MFC hacks we used for VS2010 to reduce the executable's size.
Diffstat (limited to 'src/filters/transform/VSFilter')
-rw-r--r--src/filters/transform/VSFilter/VSFilter.vcxproj9
-rw-r--r--src/filters/transform/VSFilter/VSFilter.vcxproj.filters9
-rw-r--r--src/filters/transform/VSFilter/installer/build_installer.bat3
-rw-r--r--src/filters/transform/VSFilter/installer/vsfilter_setup.iss11
4 files changed, 3 insertions, 29 deletions
diff --git a/src/filters/transform/VSFilter/VSFilter.vcxproj b/src/filters/transform/VSFilter/VSFilter.vcxproj
index 41d3a13d5..c5d9f17da 100644
--- a/src/filters/transform/VSFilter/VSFilter.vcxproj
+++ b/src/filters/transform/VSFilter/VSFilter.vcxproj
@@ -126,15 +126,6 @@
</Link>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="..\..\..\thirdparty\mfc\afxctrlcontainer.cpp">
- <ExcludedFromBuild Condition="'$(PlatformToolsetVersion)'=='110'">true</ExcludedFromBuild>
- </ClCompile>
- <ClCompile Include="..\..\..\thirdparty\mfc\afxglobals.cpp">
- <ExcludedFromBuild Condition="'$(PlatformToolsetVersion)'=='110'">true</ExcludedFromBuild>
- </ClCompile>
- <ClCompile Include="..\..\..\thirdparty\mfc\winmdi.cpp">
- <ExcludedFromBuild Condition="'$(PlatformToolsetVersion)'=='110'">true</ExcludedFromBuild>
- </ClCompile>
<ClCompile Include="AvgLines.cpp" />
<ClCompile Include="Copy.cpp" />
<ClCompile Include="csriapi.cpp" />
diff --git a/src/filters/transform/VSFilter/VSFilter.vcxproj.filters b/src/filters/transform/VSFilter/VSFilter.vcxproj.filters
index 8357ca6a0..3e881a420 100644
--- a/src/filters/transform/VSFilter/VSFilter.vcxproj.filters
+++ b/src/filters/transform/VSFilter/VSFilter.vcxproj.filters
@@ -57,15 +57,6 @@
<ClCompile Include="VSFilter.cpp">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="..\..\..\thirdparty\mfc\winmdi.cpp">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="..\..\..\thirdparty\mfc\afxctrlcontainer.cpp">
- <Filter>Source Files</Filter>
- </ClCompile>
- <ClCompile Include="..\..\..\thirdparty\mfc\afxglobals.cpp">
- <Filter>Source Files</Filter>
- </ClCompile>
</ItemGroup>
<ItemGroup>
<None Include="VSFilter.def">
diff --git a/src/filters/transform/VSFilter/installer/build_installer.bat b/src/filters/transform/VSFilter/installer/build_installer.bat
index eeb4ca5d2..13314751a 100644
--- a/src/filters/transform/VSFilter/installer/build_installer.bat
+++ b/src/filters/transform/VSFilter/installer/build_installer.bat
@@ -25,7 +25,8 @@ REM installed and you want to use the ANSI Inno Setup which is in another locati
IF NOT DEFINED InnoSetupPath SET "InnoSetupPath=H:\progs\thirdparty\isetup"
SET ROOT_DIR=..\..\..\..\..
-SET "BIN_DIR=%ROOT_DIR%\bin12"
+SET "BIN_DIR=%ROOT_DIR%\bin"
+
CALL :SubDetectInnoSetup
IF EXIST "%~dp0%ROOT_DIR%\signinfo.txt" (
CALL :SubSign VSFilter.dll x86
diff --git a/src/filters/transform/VSFilter/installer/vsfilter_setup.iss b/src/filters/transform/VSFilter/installer/vsfilter_setup.iss
index 2b56587ed..cdfe7adbb 100644
--- a/src/filters/transform/VSFilter/installer/vsfilter_setup.iss
+++ b/src/filters/transform/VSFilter/installer/vsfilter_setup.iss
@@ -26,7 +26,6 @@
; If you want to compile the 64-bit version define "x64Build" (uncomment the define below or use build.bat)
#define sse_required
-;#define VS2010
;#define x64Build
@@ -44,11 +43,7 @@
#define app_vername = app_name + " " + app_version
#define quick_launch "{userappdata}\Microsoft\Internet Explorer\Quick Launch"
-#if defined(VS2010)
- #define base_bindir = top_dir + "\bin"
-#else
- #define base_bindir = top_dir + "\bin12"
-#endif
+#define base_bindir = top_dir + "\bin"
#ifdef x64Build
#define bindir = base_bindir + "\Filters_x64"
@@ -62,10 +57,6 @@
#error Compile VSFilter first
#endif
-#if defined(VS2010)
- #define OutFilename = OutFilename + ".VS2010"
-#endif
-
#if MPC_NIGHTLY_RELEASE
#define FullAppNameVer = app_vername + " " + "(" + str(MPCHC_HASH) + ")"
#else