You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been formatting my PRIVATE/PUBLIC/INTERFACE commands like this
target_link_libraries(
targetA
INTERFACE
targetB
targetC
PUBLIC
targetD
targetE
)
I would not mind if it were
target_link_libraries(targetA
INTERFACE
targetB
targetC
PUBLIC
targetD
targetE
)
But I really like:
a) Always a single dependency by line
b) The constant indentation level of targetB and targetD, even if they are under specifiers (INTERFACE and PUBLIC) with different lengths.
After playing with the configuration file I have not seen any option to allow this. Would it be possible to make cmake-format format like this?
The text was updated successfully, but these errors were encountered:
I have been formatting my PRIVATE/PUBLIC/INTERFACE commands like this
I would not mind if it were
But I really like:
a) Always a single dependency by line
b) The constant indentation level of targetB and targetD, even if they are under specifiers (INTERFACE and PUBLIC) with different lengths.
After playing with the configuration file I have not seen any option to allow this. Would it be possible to make cmake-format format like this?
The text was updated successfully, but these errors were encountered: