-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
cimg: add v3.3.5, expose all available options, fix issues with fftw and opencv, avoid overlinking #22290
Open
valgur
wants to merge
17
commits into
conan-io:master
Choose a base branch
from
valgur:update/cimg
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+231
−50
Open
cimg: add v3.3.5, expose all available options, fix issues with fftw and opencv, avoid overlinking #22290
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
ca1e8e4
cimg: configure `cimg_display` define, add Xorg dependency
valgur 7fafd9c
cimg: enable dependencies in test_package
valgur 8f75fed
cimg: fix fftw define
valgur 908d8b6
cimg: add v3.3.3
valgur b80f07a
cimg: set cimg_use_fftw3_singlethread
valgur 6f548c9
cimg: expose all available options, add option descriptions
valgur bbaa1d7
cimg: fix topics
valgur 110411f
cimg: downgrade OpenCV
valgur fc1390f
cimg: explicitly list requires to avoid overlinking
valgur 99ab396
cimg: add libjpeg alternatives
valgur 5179e1b
cimg: drop v2.8.3
valgur 19f2e31
cimg: handle deleted option correctly
valgur 18a0964
cimg: use options.get_safe()
valgur 7aac4c2
cimg: do not set deleted options in test_package for v1
valgur e437928
Merge remote-tracking branch 'upstream/master' into update/cimg
valgur 3f0967a
cimg: bump to v3.3.5, drop a vulnerable version
valgur 01155d7
cimg: bump deps
valgur 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
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
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 |
---|---|---|
@@ -1,13 +1,11 @@ | ||
versions: | ||
"3.3.5": | ||
folder: all | ||
"3.3.2": | ||
folder: all | ||
"3.3.0": | ||
folder: all | ||
"3.2.6": | ||
folder: all | ||
"3.0.2": | ||
folder: all | ||
"2.9.9": | ||
folder: all | ||
"2.8.3": | ||
folder: all |
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 is this needed? Usually test packages should be much simpler than this
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.
You usually can't do more extensive testing in test_package due to the corresponding binary not being built for non-default options. This limitation does not exist for header-only packages, though. It has been very useful in validating the full configuration, but I can comment out this part now that the build is passing. What do you think?