-
Notifications
You must be signed in to change notification settings - Fork 585
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
msg: Add support for extra dependencies to messages function, convert odb to it and add extra dep to cts #6407
Conversation
clang-tidy review says "All clean, LGTM! 👍" |
src/cmake/messages.cmake
Outdated
@@ -95,3 +95,65 @@ function(messages) | |||
WORKING_DIRECTORY ${SOURCE_DIR} | |||
) | |||
endfunction() | |||
|
|||
function(messages_multi) |
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.
This appears to copy the messages
function just to add a new DEPENDS argument. Could you just make take an option on the current one and handle if it is empty?
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.
Resent PR which extends messages function, convert odb and fix cts. Updated PR title. Thanks.
Signed-off-by: Christian Costa <[email protected]>
Signed-off-by: Christian Costa <[email protected]>
Signed-off-by: Christian Costa <[email protected]>
f047e93
to
7e1323f
Compare
clang-tidy review says "All clean, LGTM! 👍" |
clang-tidy review says "All clean, LGTM! 👍" |
I created another PR #6468 as I accidentally trashed my branch and couldn't push a typo fix. |
For #6406.
This is similar to what is done for odb but in a generic way that can be reused.
The new messages_multi cmake function can probably be merged in the messages one.