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
This is actually not an issue for external libraries as the Setup*.cmake files are included into the top-level CMakeLists.txt and therefore the lists are in the global scope.
The cmake command
will only append to
A_LIST
in the current scope.We need to fix this in multiple locations for adding external libraries.
The proposed fix is to define a new cmake function
which uses the cmake function set which can modify a variable in the PARENT_SCOPE
The text was updated successfully, but these errors were encountered: