Skip to content

Commit

Permalink
add info about cmake installation on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenop committed Mar 29, 2018
1 parent 4227602 commit 3b37863
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Compiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,14 @@ If you're using master branch (4.0) run
```

5. Build a solution (`tesseract.sln`) in your Visual Studio version.
If you want to build and install from command like (e.g. Release build) you can use this command:
```
cmake --build . --config Release --target install
```
If you want to install to other directory that C:\Program Files (you will need admin right for this), you need to specify install path during configuration:
```
cmake .. -G "Visual Studio 15 2017 Win64" -DCMAKE_INSTALL_PREFIX=inst
```

**For development purposes** of training tools after cloning a repo from previous paragraph, run
```
Expand Down

0 comments on commit 3b37863

Please sign in to comment.