Skip to content

Commit

Permalink
FolderCompare.vcxproj: Remove MFC dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sdottaka committed Oct 7, 2023
1 parent 112c6fb commit 7d16fc7
Show file tree
Hide file tree
Showing 10 changed files with 46 additions and 201 deletions.
5 changes: 4 additions & 1 deletion Externals/crystaledit/editlib/editlibparsers.vcxitems
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,10 @@
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<PrecompiledHeaderOutputFile>$(IntDir)$(TargetName)2.pch</PrecompiledHeaderOutputFile>
</ClCompile>
<ClCompile Include="$(MSBuildThisFileDirectory)utils\fpattern.cpp" />
<ClCompile Include="$(MSBuildThisFileDirectory)utils\fpattern.cpp">
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<PrecompiledHeaderOutputFile>$(IntDir)$(TargetName)2.pch</PrecompiledHeaderOutputFile>
</ClCompile>
<ClCompile Include="$(MSBuildThisFileDirectory)utils\string_util.cpp">
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<PrecompiledHeaderOutputFile>$(IntDir)$(TargetName)2.pch</PrecompiledHeaderOutputFile>
Expand Down
2 changes: 1 addition & 1 deletion Externals/crystaledit/editlib/utils/fpattern.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// - LEAVE THIS HEADER INTACT
////////////////////////////////////////////////////////////////////////////

#include "StdAfx.h"
#include "pch.h"
#include "fpattern.h"

#if TEST
Expand Down
3 changes: 3 additions & 0 deletions Src/Common/LanguageSelect.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@
#include <vector>
#include <string>
#include <map>
#include "UnicodeString.h"

/////////////////////////////////////////////////////////////////////////////
// CLanguageSelect class

class CStatusBar;

/**
* @brief Class for selecting GUI language.
*
Expand Down
8 changes: 6 additions & 2 deletions Src/Merge.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1417,7 +1417,10 @@
<ClCompile Include="WildcardDropList.cpp" />
<ClCompile Include="WindowsManagerDialog.cpp" />
<ClCompile Include="WMGotoDlg.cpp" />
<ClCompile Include="MergeAppCOMClass.cpp" />
<ClCompile Include="MergeAppCOMClass.cpp">
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<PrecompiledHeaderOutputFile>$(IntDir)$(TargetName)2.pch</PrecompiledHeaderOutputFile>
</ClCompile>
<ClCompile Include="xdiff_gnudiff_compat.cpp">
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<PrecompiledHeaderOutputFile>$(IntDir)$(TargetName)2.pch</PrecompiledHeaderOutputFile>
Expand All @@ -1441,6 +1444,7 @@
<ClInclude Include="AboutDlg.h" />
<ClInclude Include="ClipboardHistory.h" />
<ClInclude Include="Common\cio.h" />
<ClInclude Include="Common\DebugNew.h" />
<ClInclude Include="Common\IniOptionsMgr.h" />
<ClInclude Include="Common\IMDITab.h" />
<ClInclude Include="Common\Shell.h" />
Expand Down Expand Up @@ -1823,4 +1827,4 @@
<UserProperties RESOURCE_FILE="Merge.rc" />
</VisualStudio>
</ProjectExtensions>
</Project>
</Project>
3 changes: 3 additions & 0 deletions Src/Merge.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -1368,6 +1368,9 @@
<ClInclude Include="IDirDoc.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="Common\DebugNew.h">
<Filter>Common\Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<None Include="res\binarydiff.ico">
Expand Down
3 changes: 2 additions & 1 deletion Src/MergeAppCOMClass.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include "StdAfx.h"
#include "pch.h"
#include <Windows.h>
#include "MergeAppCOMClass.h"
#include "LanguageSelect.h"
#include "OptionsMgr.h"
Expand Down
54 changes: 24 additions & 30 deletions Testing/FolderCompare/FolderCompare.vcxproj

Large diffs are not rendered by default.

9 changes: 3 additions & 6 deletions Testing/FolderCompare/FolderCompare.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,6 @@
<ClCompile Include="..\..\Src\SubstitutionList.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="StdAfx.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\Src\HashCalc.cpp">
<Filter>Source Files</Filter>
</ClCompile>
Expand Down Expand Up @@ -332,9 +329,6 @@
<ClInclude Include="..\..\Src\charsets.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="StdAfx.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\..\Src\HashCalc.h">
<Filter>Header Files</Filter>
</ClInclude>
Expand All @@ -347,5 +341,8 @@
<ClInclude Include="..\..\Src\MergeAppCOMClass.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="DebugNew.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
</Project>
1 change: 0 additions & 1 deletion Testing/FolderCompare/StdAfx.cpp

This file was deleted.

159 changes: 0 additions & 159 deletions Testing/FolderCompare/StdAfx.h

This file was deleted.

0 comments on commit 7d16fc7

Please sign in to comment.