-
Notifications
You must be signed in to change notification settings - Fork 159
Make REFLECTCPP_USE_BUNDLED_DEPENDENCIES option consistent with enchantum #581
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
base: main
Are you sure you want to change the base?
Conversation
Summary of ChangesHello @DNKpp, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request resolves a critical integration issue where Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Code Review
This pull request aims to make the DREFLECTCPP_USE_BUNDLED_DEPENDENCIES option consistent for the enchantum dependency. The changes in CMakeLists.txt correctly add logic to find and link an external enchantum library when bundled dependencies are disabled. Correspondingly, the include paths for enchantum headers in various files have been updated to be more generic, allowing them to work with both the bundled and external versions. The implementation is correct and effectively addresses the issue described.
|
@DNKpp , thanks for your PR! However, the problem is that enchantum is not on Conan. If I accept this PR, it will for sure break our Conan package. |
|
@DNKpp , it appears to me that the pragmatic solution is to have a separate flag for whether or not we want to used the bundled enchantum. |
|
@liuzicheng1987 I think a separate option for each bundled dependency would be the best. I'm certain there are already lots of CTRE users out there, while yyjson is probably not that common in the c++ community. The all or nothing option is at least something, but I like your suggestion with dedicated switches. EDIT: Are all these failed pipelines due to the mentioned conan issue? |
|
@DNKpp , that means we would have to tweak the existing recipes. So I rather just have a separate flag for enchantum. The difference between CTRE and YYJSON and enchantum is that the former two can be found on all relevant package managers. So if we do not include a bundled version, there is always an alternative. Enchantum, on the other hand , is not found on all relevant package managers, so we need to treat it differently. |
|
@DNKpp , yes, all of the pipeline failures are related to the Conan issue. |
Hello,
I'm currently reviewing whether I can adapt reflect-cpp for the project I'm working on. Unfortunately, the integration does not work as of now, because I'm already depending on enchantum, thus there is an existing integraiton. As reflect-cpp brings its own copy under the
thirdpartyfolder, that results in lots of clashes when includingrfl.hpp.There already is the option
REFLECTCPP_USE_BUNDLED_DEPENDENCIESwhich does switch whether the thirdparty folder is set as include directory, and thus conditionally includes the bundledctreandyyjson, or an external version.Currently,
enchantumincludes are always prefixed with the subfolderthirdparty, which prevents this mechanism to work.