1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-15 07:01:18 +02:00

Improve CopyLibs.cmake fix from 7d30537 for nonrecursive cases...

... When the graph of library dependencies is not recursive but complicated,
a combinatorial explosion of paths could make the post-build step not infinite
but very long (80 minutes in one of my experimental refactoring branches!)
This commit is contained in:
Paul Licameli
2021-06-05 09:41:09 -04:00
parent b1797c88ea
commit e83c66ee50

View File

@@ -116,6 +116,7 @@ function( gather_libs src )
set( libs ${libs} PARENT_SCOPE )
set( postcmds ${postcmds} PARENT_SCOPE )
set( VISITED ${VISITED} PARENT_SCOPE )
endfunction()
gather_libs( "${SRC}" )