# -*- cmake -*- set(CMAKE_VERBOSE_MAKEFILE ON) # remove this once things work # Try to find pulse header, if we got them we can use the linux volume catcher if (LINUX) include(GLIB) include_directories( ${GLIB_INCLUDE_DIRS} ) foreach( PULSE_FILE pulse/introspect.h pulse/context.h pulse/subscribe.h pulse/glib-mainloop.h ) find_path( PULSE_FILE_${PULSE_FILE}_FOUND ${PULSE_FILE} NO_CACHE) if( NOT PULSE_FILE_${PULSE_FILE}_FOUND ) message( "Looking for ${PULSE_FILE} ... not found") message( FATAL_ERROR "Pulse header not found" ) else() message( "Looking for ${PULSE_FILE} ... found") endif() endforeach() message( "Building with linux volume catcher" ) set(LINUX_VOLUME_CATCHER linux_volume_catcher.cpp) set(MEDIA_PLUGIN_BASE_INCLUDE_DIRS ${LIBS_OPEN_DIR}/media_plugins/base/ ) set(MEDIA_PLUGIN_BASE_LIBRARIES media_plugin_base) endif() # make sure no changes happen to other platforms by moving endif() here