audacia/libraries/CMakeLists.txt

19 lines
462 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"
)
if ( ${_OPT}has_networking )
list( APPEND LIBRARIES "lib-network-manager")
endif()
foreach( LIBRARY ${LIBRARIES} )
add_subdirectory( "${LIBRARY}" )
endforeach()
set( GRAPH_EDGES "${GRAPH_EDGES}" PARENT_SCOPE )
set( AUDACITY_LIBRARIES "${AUDACITY_LIBRARIES}" PARENT_SCOPE )