1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-29 15:19:44 +02:00
audacity/libraries/CMakeLists.txt
Panagiotis Vasilopoulos 1eba71b378
Remove unused libuuid library
Signed-off-by: Panagiotis Vasilopoulos <hello@alwayslivid.com>
2021-07-14 16:08:44 +03:00

17 lines
403 B
CMake

# 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
lib-string-utils
lib-strings
lib-utility
)
foreach( LIBRARY ${LIBRARIES} )
add_subdirectory( "${LIBRARY}" )
endforeach()
set( GRAPH_EDGES "${GRAPH_EDGES}" PARENT_SCOPE )
set( AUDACITY_LIBRARIES "${AUDACITY_LIBRARIES}" PARENT_SCOPE )