Linking with Audio Manager

Projects that use audio manager need to link against the library audio_manager (or libaudio_manager.so for the object name) to resolve the symbolic links.

If you use a makefile project, you can link with audio manager by adding the following code to the file common.makefile:

#  Add library dependency
LIBS+=audio_manager
 
#  Statically link libaudio_manager for debug builds
ifneq( $(origin DEBUG),undefined)
LIBPREF_audio_manager = -Bstatic
LIBPOST_audio_manager = -Bdynamic
endif