1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-27 07:40:10 +01:00

Support for our own libraries, distinct from modules

This commit is contained in:
Paul Licameli
2021-02-11 09:54:59 -05:00
parent ea04eef7e4
commit dfbf3d25c1
4 changed files with 69 additions and 14 deletions

13
libraries/CMakeLists.txt Normal file
View File

@@ -0,0 +1,13 @@
# Include the libraries that we'll build
# The list of modules is ordered so that each library occurs after any others
# that it depends on
set( LIBRARIES
)
foreach( LIBRARY ${LIBRARIES} )
add_subdirectory("${LIBRARY}")
endforeach()
set( GRAPH_EDGES "${GRAPH_EDGES}" PARENT_SCOPE )
set( AUDACITY_LIBRARIES "${AUDACITY_LIBRARIES}" PARENT_SCOPE )