-
Notifications
You must be signed in to change notification settings - Fork 282
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
Updating documentation on main to respect ctest #2034
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
122fb95
Updating documentation to respect ctest.
clanmills 5693979
Restored test lensTest. Minimized differences between main/README.md…
clanmills 82371c4
Adding version_test.py.
clanmills e32d3fc
Fixes following review.
clanmills f3393f8
Fixes following review.
clanmills 10661d6
Fix `$ $` typo. Well spotted, @kmilos.
clanmills File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,21 +98,19 @@ os_build=Windows | |
[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> | ||
|
||
##### 1.4) Build dependencies, create build environment, build and test</a> | ||
|
||
|
||
| | 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 | | ||
| _**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. | | ||
| _**4**_ | Optionally Run Test Suite | $ make tests | c:\\..\\build> cmake --build . --config Release --target tests<br/>[README.md](README.md) | | ||
|
||
|
||
| _**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. | | ||
| _**4**_ | Optionally Run Test Suite<br/>Test documentation: [README.md](README.md) | $ ctest | c:\\..\\build> ctest -C Release | | ||
|
||
[TOC](#TOC) | ||
<name id="2"></a> | ||
|
@@ -587,4 +585,4 @@ $ cmake -DEXIV2_ENABLE_WEBREADY=ON -DEXIV2_ENABLE_CURL=ON .. | |
|
||
[TOC](#TOC) | ||
|
||
Written by Robin Mills<br>[email protected]<br>Updated: 2021-03-18 | ||
Written by Robin Mills<br>[email protected]<br>Updated: 2021-12-17 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why remove lensTest, they were running fine?