-
Notifications
You must be signed in to change notification settings - Fork 1.1k
qbs: add optional support for cmake_file_name property #18866
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
Open
ABBAPOH
wants to merge
1
commit into
conan-io:develop2
Choose a base branch
from
ABBAPOH:qbs-cmake
base: develop2
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.
Open
Changes from all commits
Commits
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 hidden or 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 |
---|---|---|
|
@@ -55,10 +55,11 @@ def render(self): | |
class _QbsDepGenerator: | ||
""" Handles a single package, can create multiple modules in case of several components | ||
""" | ||
def __init__(self, conanfile, dep, build_bindirs): | ||
def __init__(self, conanfile, dep, build_bindirs, use_cmake_file_name): | ||
self._conanfile = conanfile | ||
self._dep = dep | ||
self._build_bindirs = build_bindirs | ||
self._use_cmake_file_name = use_cmake_file_name | ||
|
||
@property | ||
def content(self): | ||
|
@@ -68,6 +69,8 @@ def content(self): | |
def _get_package_name(dep): | ||
# TODO: pkgconfig uses suffix, do we need it? see: | ||
# https://github.com/conan-io/conan/blob/develop2/conan/tools/gnu/pkgconfigdeps.py#L319 | ||
if self._use_cmake_file_name: | ||
return dep.cpp_info.get_property("cmake_file_name") or dep.ref.name | ||
return dep.cpp_info.get_property("pkg_config_name") or dep.ref.name | ||
|
||
def _get_component_name(dep, comp_name): | ||
|
@@ -166,6 +169,15 @@ def __init__(self, conanfile): | |
:param conanfile: The current recipe object. Always use ``self``. | ||
""" | ||
self._conanfile = conanfile | ||
self._use_cmake_file_name = False | ||
|
||
@property | ||
def use_cmake_file_name(self): | ||
return self._use_cmake_file_name | ||
|
||
@use_cmake_file_name.setter | ||
def use_cmake_file_name(self, value): | ||
self._use_cmake_file_name = value | ||
Comment on lines
+175
to
+180
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above, probably no need of new setter/getter, and the |
||
|
||
@property | ||
def content(self): | ||
|
@@ -186,7 +198,7 @@ def content(self): | |
continue | ||
|
||
dep_build_bindirs = build_bindirs.get(dep.ref.name, []) | ||
qbs_files.update(_QbsDepGenerator(self._conanfile, dep, dep_build_bindirs).content) | ||
qbs_files.update(_QbsDepGenerator(self._conanfile, dep, dep_build_bindirs, self._use_cmake_file_name).content) | ||
return qbs_files | ||
|
||
def generate(self): | ||
|
This file contains hidden or 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
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.
Probably no need of the new argument, if we are going to use properties, maybe the approach should be similar to CMakeDeps and allow a local QBSDeps.set_property() that can override the upstream property, and also allows defining the property locally. This would be general for any property that the generator might use in the future too.