-
Notifications
You must be signed in to change notification settings - Fork 4
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
Binding flow #28
base: master
Are you sure you want to change the base?
Binding flow #28
Conversation
- makes easier for the user, doesn't have to access dict values in the case of single use.
of function `get_compilation_arguments`
for target in targets | ||
} | ||
library_targets_objs = filter( | ||
lambda target: target.get_type() == "SHARED_LIBRARY", self.targets.values() |
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.
What about STATIC build?
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.
Didn't see it in pcl
, so didn't get to test how it is.
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.
PCL_SHARED_LIBS
can be used to choose between shared and static library for pcl
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.
Can you please provide a reference link or example?
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.
cmake -DPCL_SHARED_LIBS:BOOL=FALSE
or similar
- `is_cursor_in_file` -> `is_cursor_in_files`: support multiple files - update `_is_valid_child` to also check for inclusion sources too
WIP