Fixes following review.
This commit is contained in:
parent
82371c4d09
commit
e32d3fccad
@ -98,7 +98,7 @@ os_build=Windows
|
|||||||
[env]
|
[env]
|
||||||
```
|
```
|
||||||
|
|
||||||
_Profiles for Visual Studio are discussed in detail here: [Visual Studio Notes](#2-2)__
|
_Profiles for Visual Studio are discussed in detail here: [Visual Studio Notes](#2-2)_
|
||||||
|
|
||||||
<name id="1-4"></a>
|
<name id="1-4"></a>
|
||||||
|
|
||||||
@ -106,13 +106,11 @@ _Profiles for Visual Studio are discussed in detail here: [Visual Studio Notes](
|
|||||||
|
|
||||||
|
|
||||||
| | Build Steps | Linux and macOS | Visual Studio |
|
| | Build Steps | Linux and macOS | Visual Studio |
|
||||||
|:-- |:--------------|--------------------------------|------------------------------|
|
|:-- |:-------------------------------------------------------------------------|-----------------------|------------------------------|
|
||||||
| _**1**_ | Get conan to fetch dependencies<br><br>The output can be quite<br>long as conan downloads and/or builds<br>zlib, expat, curl and other dependencies.| $ conan install ..<br> --build missing | c:\\..\\build> conan install .. --build missing<br> --profile msvc2019Release64 |
|
| _**1**_ | Get conan to fetch dependencies<br><br>The output can be quite<br>long as conan downloads and/or builds<br>zlib, expat, curl and other dependencies.| $ conan install ..<br> --build missing | c:\\..\\build> conan install .. --build missing<br> --profile msvc2019Release64 |
|
||||||
| _**2**_ | Get cmake to generate<br>makefiles or sln/vcxproj | $ cmake .. | c:\\..\\build> cmake .. -G "Visual Studio 16 2019"
|
| _**2**_ | Get cmake to generate<br>makefiles or sln/vcxproj | $ cmake .. | c:\\..\\build> cmake .. -G "Visual Studio 16 2019"
|
||||||
| _**3**_ | Build | $ cmake --build . | c:\\..\\build> cmake --build . --config Release<br>You may prefer to open exiv2.sln and build using the IDE. |
|
| _**3**_ | Build | $ cmake --build . | c:\\..\\build> cmake --build . --config Release<br>You may prefer to open exiv2.sln and build using the IDE. |
|
||||||
| _**4**_ | Optionally Run Test Suite | $ make test | c:\\..\\build> cmake --build . --config Release --target test<br/>[README.md](README.md) |
|
| _**4**_ | Optionally Run Test Suite<br/>Test documentation: [README.md](README.md) | $ ctest | c:\\..\\build> ctest -C Release |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[TOC](#TOC)
|
[TOC](#TOC)
|
||||||
<name id="2"></a>
|
<name id="2"></a>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user