Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Building instructions in README.md #161

Merged
merged 3 commits into from
Feb 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,32 @@ types of defects.

[AntiDupl.NET](http://ermig1979.github.io/AntiDupl) program is free and open-source software.
It is simple to use, has high speed and accuracy of work, supports Russian and English interface.

Building AntiDupl.NET
================================
1. Download Visual Studio 2022
e.g. the Community Edition:

https://visualstudio.microsoft.com/vs/community/

2. In the Visual Studio Installer select following workloads
- .NET Desktop development
- Desktop development with C++
Info: Current latest default toolset is v143
3. Download [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager,
e.g. by using git:
```
git clone https://github.com/Microsoft/vcpkg.git
```
4. Install [vcpkg](https://github.com/Microsoft/vcpkg):
```
cd vcpkg
./bootstrap-vcpkg.bat
./vcpkg integrate install
```
5. Open Visual solution file
```
src\AntiDupl\AntiDupl.sln
```
6. Start building AntiDupl.NET in Visual Studio.
Depended libraries will be automatically loaded and build by vcpkg