1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-12 17:43:37 +02:00

Adds lib-sentry-report

This commit is contained in:
Dmitry Vedenko
2021-06-08 13:40:08 +03:00
committed by Dmitry Vedenko
parent 185d1d5ecc
commit cb1f8b6c34
11 changed files with 852 additions and 2 deletions

View File

@@ -3,16 +3,21 @@
# The list of modules is ordered so that each library occurs after any others
# that it depends on
set( LIBRARIES
"lib-string-utils"
lib-string-utils
lib-strings
lib-utility
lib-uuid
)
if ( ${_OPT}has_networking )
list( APPEND LIBRARIES "lib-network-manager")
list( APPEND LIBRARIES lib-network-manager)
endif()
# This library depends on lib-network-manager
# If Sentry reporting is disabled, an INTERFACE library
# will be defined
list( APPEND LIBRARIES lib-sentry-reporting)
foreach( LIBRARY ${LIBRARIES} )
add_subdirectory( "${LIBRARY}" )
endforeach()