Skip to content
Snippets Groups Projects
Commit 675817c3 authored by Simon Praetorius's avatar Simon Praetorius
Browse files

Merge branch 'issue/project-libraries-property-name' into 'master'

Fix typo in global property add_library

See merge request !1265
parents e9858e5d 420ce632
No related branches found
No related tags found
1 merge request!1265Fix typo in global property add_library
Pipeline #62850 passed
Pipeline: Dune Nightly Test

#62852

    ......@@ -232,7 +232,7 @@ function(dune_add_library_normal _name)
    # Register library in global property <module>_LIBRARIES
    if(NOT ARG_NO_MODULE_LIBRARY)
    set_property(GLOBAL APPEND PROPERTY ${ProjectName}_LIBRARIES ${name})
    set_property(GLOBAL APPEND PROPERTY ${ProjectName}_LIBRARIES ${_name})
    endif()
    endfunction(dune_add_library_normal)
    ......@@ -293,7 +293,7 @@ function(dune_add_library_interface _name)
    # Register library in global property <module>_LIBRARIES
    if(NOT ARG_NO_MODULE_LIBRARY)
    set_property(GLOBAL APPEND PROPERTY ${ProjectName}_LIBRARIES ${name})
    set_property(GLOBAL APPEND PROPERTY ${ProjectName}_LIBRARIES ${_name})
    endif()
    endfunction(dune_add_library_interface)
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment