OSDN Git Service

Update README.md
[winmerge-jp/winmerge-jp.git] / README.md
1 # WinMerge Source Code
2 [![Build status](https://ci.appveyor.com/api/projects/status/h3v3ap1kswi1tyyt?svg=true)](https://ci.appveyor.com/project/sdottaka/winmerge)
3 [![CI](https://github.com/WinMerge/winmerge/workflows/CI/badge.svg)](https://github.com/WinMerge/winmerge/actions)
4 [![Github Releases All](https://img.shields.io/github/downloads/winmerge/winmerge/total.svg)](https://github.com/WinMerge/winmerge/releases/latest)
5 [![Translation status](https://img.shields.io/badge/translations-35-green)](https://github.com/WinMerge/winmerge/blob/master/Translations/TranslationsStatus.md)
6
7 [WinMerge](https://winmerge.org/) is an open source differencing and merging tool
8 for Windows. WinMerge can compare files and folders, presenting differences
9 in a visual format that is easy to understand and manipulate.
10
11 ## Requirements
12
13 ### Visual Studio 2017
14
15  * *Community*, *Professional* or *Enterprise* Edition
16  * VC++ 2017 v141 toolset
17  * Windows XP support for C++
18  * MFC and ATL support
19  * Windows 10 SDK
20
21 ### Visual Studio 2019
22
23  * *Community*, *Professional* or *Enterprise* Edition
24  * MSVC v142 Buildtools
25  * C++ MFC for v142 Buildtools
26  * Windows 10 SDK
27
28 ## Folder Structure
29
30 Source code for the WinMerge program, its plugins, filters, setup program,
31 and various utilities are all kept in the subfolders listed below.
32
33 The changelog file is in `Docs/Users/ChangeLog.md` and it documents 
34 both user-visible and significant changes.
35
36 Subfolders include:
37
38  - `Docs`  
39    Both user and developer documentation, in different subfolders.  
40    Can be browsed by opening `index.html` in the `Docs` folder.
41
42  - `Src`  
43    Source code to the WinMerge program itself.
44
45  - `Plugins`  
46    Source code and binaries for WinMerge runtime plugin dlls & scripts.
47
48  - `Filters`  
49    WinMerge file filters which are shipped with the distribution.
50
51  - `ArchiveSupport`  
52    Source code for the Merge7z dlls, which connect WinMerge with 7-Zip.  
53    Also this folder is required to compile `WinMergeU.exe`.  
54    There is also a standalone installer for Merge7z dlls.
55
56  - `Externals`  
57    This folder contains several libraries whose sources come from
58    outside WinMerge project.  
59    They are stored here for convenience for building and possibly 
60    needed small changes for WinMerge.  
61    Libraries include an XML parser and a regular expression parser.
62
63  - `Installer`  
64    Installer for WinMerge.
65
66  - `Tools`  
67    Various utilities used by WinMerge developers; see readme files in each.
68
69  - `ShellExtension`  
70    Windows Shell (Explorer) integration.  
71    Adds menuitems to Explorer context menu for comparing files and folders.
72
73  - `Testing`  
74    A suite of test diff files and a script to run them and report the results.  
75    This folder also has a `Google Test` subfolder containing unit tests made
76    with [Google Test Framework](https://github.com/google/googletest).
77
78  - `Build`  
79    This folder gets created by the compiler when WinMerge is compiled.  
80    It contains compiled executables, libraries, the user manual, etc.
81
82  - `BuildTmp`  
83    This folder gets created by the compiler when WinMerge is compiled.  
84    It contains temporary files created during the compilation and can be 
85    safely deleted.