diff --git a/CMakeLists.txt b/CMakeLists.txt index f791a2901..8dabf7f1c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,69 @@ cmake_minimum_required(VERSION 2.6) project( musikCube ) +set ( musikCube_VERSION_MAJOR 2) +set ( musikCube_VERSION_MINOR 0) + + +set (BOOST_LIBS +system +date_time +filesystem +iostreams +thread +regex +) + +set (Boost_ADDITIONAL_VERSIONS "1.37.0" ) +if(WIN32 AND NOT UNIX) + find_package(Boost 1.36.0 COMPONENTS ${BOOST_LIBS} ) + if (Boost_FOUND) + add_definitions (-DHAVE_BOOST) + endif (Boost_FOUND) +else(WIN32 AND NOT UNIX) + find_package(Boost 1.36.0 REQUIRED ${BOOST_LIBS}) + add_definitions (-DHAVE_BOOST + -D_FILE_OFFSET_BITS=64) + find_package(Qt4 REQUIRED) + #add_definitions(${QT_DEFINITIONS}) + #include_directories(${QT_INCLUDE_DIR}) + set (linux_LINK_LIBS + dl + expat + ) +endif(WIN32 AND NOT UNIX) + +set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_CURRENT_SOURCE_DIR}/Modules ) + include(UseDoxygen) + set(DOXYFILE_OUTPUT_DIRECTORY docs) + SET (CMAKE_BUILD_TYPE DEBUG) set (LIBRARY_OUTPUT_PATH ${musikCube_SOURCE_DIR}/lib) -set (EXECUTABLE_OUTPUT_PATH ${musikCibe_SOURCE_DIR}/bin) +set (EXECUTABLE_OUTPUT_PATH ${musikCube_SOURCE_DIR}/bin) +link_directories (${musikCube_SOURCE_DIR}/lib) + +set (musikCube_LINK_LIBS + ${linux_LINK_LIBS} + boost_system + boost_iostreams + boost_filesystem + boost_thread + boost_regex + boost_date_time + sqlite3 + md5 +) + +include_directories ( "/usr/include/taglib" + "${musikCube_SOURCE_DIR}/src" + "${musikCube_SOURCE_DIR}/src/core" + "${musikCube_SOURCE_DIR}/src/3rdparty/include") + +add_subdirectory(src/3rdparty) add_subdirectory(src/core) +add_subdirectory(src/contrib) +#add_subdirectory(src/server) +#add_subdirectory(src/square) +#add_subdirectory(src/cube) diff --git a/src/3rdparty/CMakeLists.txt b/src/3rdparty/CMakeLists.txt new file mode 100644 index 000000000..70b30a80b --- /dev/null +++ b/src/3rdparty/CMakeLists.txt @@ -0,0 +1,13 @@ +if (UNIX AND NOT WIN32) + if (CMAKE_SIZEOF_VOID_P MATCHES "8") + add_definitions(-fPIC) + endif (CMAKE_SIZEOF_VOID_P MATCHES "8") +endif (UNIX AND NOT WIN32) + +set (3rdParty_MD5_SOURCES + include/md5/md5.h + src/md5/md5.c +) + +include_directories ( include/md5 ) +add_library( md5 STATIC ${3rdParty_MD5_SOURCES} ) diff --git a/src/contrib/CMakeLists.txt b/src/contrib/CMakeLists.txt new file mode 100644 index 000000000..141d6764a --- /dev/null +++ b/src/contrib/CMakeLists.txt @@ -0,0 +1,22 @@ +#add_subdirectory( aacdecoder ) +#add_subdirectory( apedecoder ) +#add_subdirectory( bpm_analyzer ) +add_subdirectory( cddadecoder ) +#add_subdirectory( dsp_example_echo ) +add_subdirectory( flacdecoder ) +#add_subdirectory( httpstream ) +#add_subdirectory( oggdecoder ) +find_package(Taglib) +add_definitions(-D_HAVE_TAGLIB) +add_subdirectory( taglib_plugin ) +if(CMAKE_SYSTEM_NAME MATCHES "Windows") + add_subdirectory( waveout ) + add_subdirectory( mp3decoder ) +# if(NOT DEFINED MINGW) +# +# endif(NOT DEFINED MINGW) +else(CMAKE_SYSTEM_NAME MATCHES "Windows") + add_subdirectory( alsaout ) + add_subdirectory( mpg123decoder ) +endif(CMAKE_SYSTEM_NAME MATCHES "Windows") + diff --git a/src/contrib/aacdecoder/CMakeLists.txt b/src/contrib/aacdecoder/CMakeLists.txt new file mode 100644 index 000000000..c8d93f6ff --- /dev/null +++ b/src/contrib/aacdecoder/CMakeLists.txt @@ -0,0 +1,33 @@ +set ( aacdecoder_SOURCES + aacdecoder_plugin.cpp + AACSourceSupplier.cpp + stdafx.cpp + drms.c + m4aAudioSource.cpp + mp4atom.c + mp4ff.c + mp4meta.c + mp4sample.c + mp4tagupdate.c + mp4util.c + ) + +if(CMAKE_SYSTEM_NAME MATCHES "Windows") + add_definitions(-DWIN32) + if(NOT DEFINED MINGW) + + endif(NOT DEFINED MINGW) +else(CMAKE_SYSTEM_NAME MATCHES "Windows") + set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -fpermissive) +endif(CMAKE_SYSTEM_NAME MATCHES "Windows") + +add_definitions( + -DXML_STATIC + -D_CRT_SECURE_NO_DEPRECATE + -D_DEBUG +) + +add_library( aacdecoder SHARED ${aacdecoder_SOURCES} ) +target_link_libraries( aacdecoder ${musikCube_LINK_LIBS}) + + diff --git a/src/contrib/alsaout/AlsaOut.cpp b/src/contrib/alsaout/AlsaOut.cpp new file mode 100644 index 000000000..30392b087 --- /dev/null +++ b/src/contrib/alsaout/AlsaOut.cpp @@ -0,0 +1,234 @@ +////////////////////////////////////////////////////////////////////////////// +// Copyright 2007, Daniel nnerby +// +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// * Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// +// * Neither the name of the author nor the names of other contributors may +// be used to endorse or promote products derived from this software +// without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. +// +////////////////////////////////////////////////////////////////////////////// +#include "AlsaOut.h" + +AlsaOut::AlsaOut() + :waveHandle(NULL) + ,maxBuffers(32) + ,currentVolume(1.0) + ,addToRemovedBuffers(false) + ,device("default") + ,output(NULL) +{ +} + +AlsaOut::~AlsaOut(){ + this->ClearBuffers(); + + if(this->waveHandle!=NULL){ + snd_pcm_close(this->waveHandle); + this->waveHandle = NULL; + } + +} + + +void AlsaOut::Destroy(){ + delete this; +} +/* +void WaveOut::Initialize(IPlayer *player){ + this->player = player; +} +*/ +void AlsaOut::Pause(){ + snd_pcm_pause(this->waveHandle, 1); +} + +void AlsaOut::Resume(){ + snd_pcm_pause(this->waveHandle, 0); +} + +void AlsaOut::SetVolume(double volume){ + /*if(this->waveHandle){ + DWORD newVolume = (DWORD)(volume*65535.0); + newVolume += newVolume*65536; + + waveOutSetVolume(this->waveHandle,newVolume); + } + this->currentVolume = volume;*/ //TODO: Write alsa SetVolume() function +} + +void AlsaOut::ClearBuffers(){ + snd_pcm_drop(this->waveHandle); + snd_pcm_reset(this->waveHandle); +} + +void AlsaOut::RemoveBuffer(AlsaOutBuffer *buffer){ + BufferList clearBuffers; + { + boost::mutex::scoped_lock lock(this->mutex); + bool found(false); + for(BufferList::iterator buf=this->buffers.begin();buf!=this->buffers.end() && !found;){ + if(buf->get()==buffer){ +// if( !(*buf)->ReadyToRelease() ){ + this->removedBuffers.push_back(*buf); +// } + clearBuffers.push_back(*buf); + buf=this->buffers.erase(buf); + found=true; + }else{ + ++buf; + } + } + } +} + +void AlsaOut::ReleaseBuffers(){ + BufferList clearBuffers; + { + boost::mutex::scoped_lock lock(this->mutex); + for(BufferList::iterator buf=this->removedBuffers.begin();buf!=this->removedBuffers.end();){ + clearBuffers.push_back(*buf); + buf = this->removedBuffers.erase(buf); + } + } + +} + +bool AlsaOut::PlayBuffer(IBuffer *buffer,IPlayer *player){ + + size_t bufferSize = 0; + { + boost::mutex::scoped_lock lock(this->mutex); + bufferSize = this->buffers.size(); + } + + // if the format should change, wait for all buffers to be released + if(bufferSize>0 && (this->currentChannels!=buffer->Channels() || this->currentSampleRate!=buffer->SampleRate())){ + // Format has changed +// this->player->Notify() + return false; + } + + + if(bufferSizemaxBuffers){ + // Start by checking the format + this->SetFormat(buffer); + + // Add to the waveout internal buffers + AlsaOutBufferPtr alsaBuffer(new AlsaOutBuffer(this,buffer,player)); + + // Header should now be prepared, lets add to waveout + if( alsaBuffer->AddToOutput() ){ + // Add to the buffer list + { + boost::mutex::scoped_lock lock(this->mutex); + this->buffers.push_back(alsaBuffer); + } + return true; + } + + } + + return false; +} + +void AlsaOut::SetFormat(IBuffer *buffer){ + if(this->currentChannels!=buffer->Channels() || this->currentSampleRate!=buffer->SampleRate() ||this->waveHandle==NULL){ + this->currentChannels = buffer->Channels(); + this->currentSampleRate = buffer->SampleRate(); + + // Close old waveout + if(this->waveHandle!=NULL){ + snd_pcm_close(this->waveHandle); + this->waveHandle = NULL; + } +/* + // Create a new waveFormat + ZeroMemory(&this->waveFormat, sizeof(this->waveFormat)); + DWORD speakerconfig; + + // Set speaker configuration + switch(buffer->Channels()){ + case 1: + speakerconfig = KSAUDIO_SPEAKER_MONO; + break; + case 2: + speakerconfig = KSAUDIO_SPEAKER_STEREO; + break; + case 4: + speakerconfig = KSAUDIO_SPEAKER_QUAD; + break; + case 5: + speakerconfig = (SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT | SPEAKER_FRONT_CENTER | SPEAKER_BACK_LEFT | SPEAKER_BACK_RIGHT); + break; + case 6: + speakerconfig = KSAUDIO_SPEAKER_5POINT1; + break; + default: + speakerconfig = 0; + } + + this->waveFormat.Format.cbSize = 22; + this->waveFormat.Format.wFormatTag = WAVE_FORMAT_EXTENSIBLE; + this->waveFormat.Format.nChannels = (WORD)buffer->Channels(); + this->waveFormat.Format.nSamplesPerSec = (DWORD)buffer->SampleRate(); + this->waveFormat.Format.wBitsPerSample = 32; + this->waveFormat.Format.nBlockAlign = (this->waveFormat.Format.wBitsPerSample/8) * this->waveFormat.Format.nChannels; + this->waveFormat.Format.nAvgBytesPerSec = ((this->waveFormat.Format.wBitsPerSample/8) * this->waveFormat.Format.nChannels) * this->waveFormat.Format.nSamplesPerSec; //Compute using nBlkAlign * nSamp/Sec + + // clangen: wValidBitsPerSample/wReserved/wSamplesPerBlock are a union, + // so don't set wReserved or wSamplesPerBlock to 0 after assigning + // wValidBitsPerSample. (Vista bug) + this->waveFormat.Samples.wValidBitsPerSample = 32; + this->waveFormat.dwChannelMask = speakerconfig; + this->waveFormat.SubFormat = KSDATAFORMAT_SUBTYPE_IEEE_FLOAT; + */ + this->waveFormat = SND_PCM_FORMAT_FLOAT_LE; + this->waveAccess = SND_PCM_ACCESS_RW_INTERLEAVED; + + int err; + //Open the device + if ((err = snd_pcm_open(&this->waveHandle, device, SND_PCM_STREAM_PLAYBACK, 0)) < 0) { + printf("Playback open error: %s\n", snd_strerror(err)); + return; + } + //Set simple parameters + if (( err = snd_pcm_set_params( + this->waveHandle, + this->waveFormat, + this->waveAccess, + this->currentChannels, + this->currentSampleRate, + 1, //Allow alsa-lib software resampling + 500000) //Required overall latency (us) /* 0.5s */ + ) > 0) { //If an error... + printf("Playback open error: %s\n", snd_strerror(err)); + exit(EXIT_FAILURE); + } + + // Set the volume if it's not already set + this->SetVolume(this->currentVolume); + } +} diff --git a/src/contrib/alsaout/AlsaOut.h b/src/contrib/alsaout/AlsaOut.h new file mode 100644 index 000000000..f0e06c258 --- /dev/null +++ b/src/contrib/alsaout/AlsaOut.h @@ -0,0 +1,100 @@ +////////////////////////////////////////////////////////////////////////////// +// Copyright © 2009, Julian Cromarty +// +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// * Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// +// * Neither the name of the author nor the names of other contributors may +// be used to endorse or promote products derived from this software +// without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. +// +////////////////////////////////////////////////////////////////////////////// +#pragma once + +#include "pch.h" +#include "AlsaOutBuffer.h" +/* +#include +#include + +#include +#include +*/ +#include +#include +#include +#include + +using namespace musik::core::audio; + +class AlsaOut : public IOutput{ + public: + AlsaOut(); + ~AlsaOut(); + + virtual void Destroy(); + //virtual void Initialize(IPlayer *player); + virtual void Pause(); + virtual void Resume(); + virtual void SetVolume(double volume); + virtual void ClearBuffers(); + virtual bool PlayBuffer(IBuffer *buffer,IPlayer *player); + virtual void ReleaseBuffers(); + + public: + typedef boost::shared_ptr AlsaOutBufferPtr; + + //static void CALLBACK WaveCallback(HWAVEOUT hWave, UINT msg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD dw2); + void RemoveBuffer(AlsaOutBuffer *buffer); + + private: + void SetFormat(IBuffer *buffer); + char *device; /* playback device */ + + protected: + friend class AlsaOutBuffer; + + //IPlayer *player; + + // Audio stuff + snd_output_t *output; + snd_pcm_t *waveHandle; + snd_pcm_format_t waveFormat; + snd_pcm_access_t waveAccess; + + // Current format + int currentChannels; + long currentSampleRate; + double currentVolume; + + typedef std::list BufferList; + BufferList buffers; + BufferList removedBuffers; + size_t maxBuffers; + + boost::mutex mutex; + + bool addToRemovedBuffers; + +}; diff --git a/src/contrib/alsaout/AlsaOutBuffer.cpp b/src/contrib/alsaout/AlsaOutBuffer.cpp new file mode 100644 index 000000000..29cfcaedc --- /dev/null +++ b/src/contrib/alsaout/AlsaOutBuffer.cpp @@ -0,0 +1,94 @@ +////////////////////////////////////////////////////////////////////////////// +// Copyright ﺏ 2007, Daniel ﺿnnerby +// +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// * Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// +// * Neither the name of the author nor the names of other contributors may +// be used to endorse or promote products derived from this software +// without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. +// +////////////////////////////////////////////////////////////////////////////// +#include "AlsaOutBuffer.h" +#include "AlsaOut.h" + +////////////////////////////////////////////////////////////////////////////// + +AlsaOutBuffer::AlsaOutBuffer(AlsaOut *alsaOut,IBuffer *buffer,IPlayer *player) + :waveOut(alsaOut) + ,buffer(buffer) + ,player(player) +{ + this->PrepareBuffer(); +} + +void AlsaOutBuffer::PrepareBuffer(){ + //unsigned float bufSize = this->buffer->Samples()*this->buffer->Channels()*sizeof(float); + /*// Prepare the header + this->header.dwBufferLength = this->buffer->Samples()*this->buffer->Channels()*sizeof(float); + this->header.lpData = (LPSTR)this->buffer->BufferPointer(); + this->header.dwUser = (DWORD_PTR)this; + this->header.dwBytesRecorded = 0; + this->header.dwFlags = 0; + this->header.dwLoops = 0; + this->header.lpNext = NULL; + this->header.reserved = NULL; + + MMRESULT result = waveOutPrepareHeader(this->waveOut->waveHandle,&this->header,sizeof(WAVEHDR)); + if(result!=MMSYSERR_NOERROR){ + throw; + } + this->header.dwFlags |= WHDR_DONE; + */ + data = this->buffer->BufferPointer(); + bufferLength = this->buffer->Samples()*this->buffer->Channels()*sizeof(float); + //TODO: Check data types. + +} + +AlsaOutBuffer::~AlsaOutBuffer(void) +{ + this->player->ReleaseBuffer(this->buffer); +} + +bool AlsaOutBuffer::AddToOutput(){ + /*MMRESULT result = waveOutWrite(this->waveOut->waveHandle,&this->header,sizeof(WAVEHDR)); + if(result==MMSYSERR_NOERROR){ + return true; + }*/ + int err; + frames = snd_pcm_writei(waveOut->waveHandle, (void*)data, bufferLength); + if (frames < 0) + frames = snd_pcm_recover(waveOut->waveHandle, frames, 0); + if (frames < 0) { + printf("snd_pcm_writei failed: %s\n", snd_strerror(err)); + return false; + } + if (frames > 0 && frames < (long)bufferLength) { + printf("Short write (expected %li, wrote %li)\n", (long)bufferLength, frames); + return false; + } + else return true; +} + diff --git a/src/contrib/alsaout/AlsaOutBuffer.h b/src/contrib/alsaout/AlsaOutBuffer.h new file mode 100644 index 000000000..13b4bc4f2 --- /dev/null +++ b/src/contrib/alsaout/AlsaOutBuffer.h @@ -0,0 +1,69 @@ +////////////////////////////////////////////////////////////////////////////// +// Copyright � 2007, Daniel �nnerby +// +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// * Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// +// * Neither the name of the author nor the names of other contributors may +// be used to endorse or promote products derived from this software +// without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. +// +////////////////////////////////////////////////////////////////////////////// +#pragma once + +#include +#include +#include + +////////////////////////////////////////////////////////////////////////////// +// Forward declare +class AlsaOut; + +////////////////////////////////////////////////////////////////////////////// + +using namespace musik::core::audio; + +class AlsaOutBuffer +{ + public: + AlsaOutBuffer(AlsaOut *waveOut,IBuffer *buffer,IPlayer *player); + ~AlsaOutBuffer(void); + + bool AddToOutput(); + void PrepareBuffer(); + + AlsaOut *waveOut; + IBuffer *buffer; + IPlayer *player; + + //snd_pcm_channel_area_t *areas; + + private: + snd_pcm_sframes_t frames; + float* data; + int bufferLength; + +}; + +////////////////////////////////////////////////////////////////////////////// diff --git a/src/contrib/alsaout/CMakeFiles/CMakeDirectoryInformation.cmake b/src/contrib/alsaout/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..35ce86013 --- /dev/null +++ b/src/contrib/alsaout/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,25 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.6 + +# Relative path conversion top directories. +SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/urioxis/programming/musikcube") +SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/urioxis/programming/musikcube") + +# Force unix paths in dependencies. +SET(CMAKE_FORCE_UNIX_PATHS 1) + +# The C and CXX include file search paths: +SET(CMAKE_C_INCLUDE_PATH + "/usr/include/taglib" + "src" + "src/core" + "src/3rdparty/include" + ) +SET(CMAKE_CXX_INCLUDE_PATH ${CMAKE_C_INCLUDE_PATH}) +SET(CMAKE_Fortran_INCLUDE_PATH ${CMAKE_C_INCLUDE_PATH}) + +# The C and CXX include file regular expressions for this directory. +SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/src/contrib/alsaout/CMakeFiles/alsaout.dir/CXX.includecache b/src/contrib/alsaout/CMakeFiles/alsaout.dir/CXX.includecache new file mode 100644 index 000000000..3eaa0cd77 --- /dev/null +++ b/src/contrib/alsaout/CMakeFiles/alsaout.dir/CXX.includecache @@ -0,0 +1,6090 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOut.cpp +AlsaOut.h +/home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOut.h + +/home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOut.h +pch.h +/home/urioxis/programming/musikcube/src/contrib/alsaout/pch.h +AlsaOutBuffer.h +/home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOutBuffer.h +boost/thread/condition.hpp +- +boost/thread/thread.hpp +- +core/audio/IAudioCallback.h +- +core/audio/IAudioOutput.h +- +core/audio/IOutput.h +- +list +- +boost/shared_ptr.hpp +- +boost/thread/mutex.hpp +- + +/home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOutBuffer.cpp +AlsaOutBuffer.h +/home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOutBuffer.h +AlsaOut.h +/home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOut.h + +/home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOutBuffer.h +core/audio/IBuffer.h +- +core/audio/IPlayer.h +- +alsa/asoundlib.h +- + +/home/urioxis/programming/musikcube/src/contrib/alsaout/alsaout_plugin.cpp +pch.h +/home/urioxis/programming/musikcube/src/contrib/alsaout/pch.h +core/IPlugin.h +- +AlsaOut.h +/home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOut.h + +/home/urioxis/programming/musikcube/src/contrib/alsaout/pch.h +core/config.h +- +alsa/asoundlib.h +- + +src/3rdparty/include/boost/algorithm/string/case_conv.hpp +boost/algorithm/string/config.hpp +- +algorithm +- +locale +- +boost/iterator/transform_iterator.hpp +- +boost/range/as_literal.hpp +- +boost/range/begin.hpp +- +boost/range/end.hpp +- +boost/range/value_type.hpp +- +boost/algorithm/string/detail/case_conv.hpp +- + +src/3rdparty/include/boost/algorithm/string/compare.hpp +boost/algorithm/string/config.hpp +- +locale +- + +src/3rdparty/include/boost/algorithm/string/concept.hpp +boost/concept_check.hpp +- +boost/range/iterator_range.hpp +- +boost/range/begin.hpp +- +boost/range/end.hpp +- + +src/3rdparty/include/boost/algorithm/string/config.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- + +src/3rdparty/include/boost/algorithm/string/constants.hpp + +src/3rdparty/include/boost/algorithm/string/detail/case_conv.hpp +boost/algorithm/string/config.hpp +- +locale +- +functional +- + +src/3rdparty/include/boost/algorithm/string/detail/find_format.hpp +boost/algorithm/string/config.hpp +- +boost/range/iterator_range.hpp +- +boost/range/const_iterator.hpp +- +boost/range/iterator.hpp +- +boost/algorithm/string/detail/find_format_store.hpp +- +boost/algorithm/string/detail/replace_storage.hpp +- + +src/3rdparty/include/boost/algorithm/string/detail/find_format_all.hpp +boost/algorithm/string/config.hpp +- +boost/range/iterator_range.hpp +- +boost/range/const_iterator.hpp +- +boost/range/value_type.hpp +- +boost/algorithm/string/detail/find_format_store.hpp +- +boost/algorithm/string/detail/replace_storage.hpp +- + +src/3rdparty/include/boost/algorithm/string/detail/find_format_store.hpp +boost/algorithm/string/config.hpp +- +boost/range/iterator_range.hpp +- + +src/3rdparty/include/boost/algorithm/string/detail/finder.hpp +boost/algorithm/string/config.hpp +- +boost/algorithm/string/constants.hpp +- +boost/detail/iterator.hpp +- +boost/range/iterator_range.hpp +- +boost/range/begin.hpp +- +boost/range/end.hpp +- +boost/range/empty.hpp +- +boost/range/as_literal.hpp +- + +src/3rdparty/include/boost/algorithm/string/detail/formatter.hpp +boost/range/iterator_range.hpp +- +boost/range/begin.hpp +- +boost/range/end.hpp +- +boost/range/const_iterator.hpp +- +boost/algorithm/string/detail/util.hpp +- + +src/3rdparty/include/boost/algorithm/string/detail/replace_storage.hpp +boost/algorithm/string/config.hpp +- +algorithm +- +boost/mpl/bool.hpp +- +boost/algorithm/string/sequence_traits.hpp +- +boost/algorithm/string/detail/sequence.hpp +- + +src/3rdparty/include/boost/algorithm/string/detail/sequence.hpp +boost/algorithm/string/config.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/logical.hpp +- +boost/range/begin.hpp +- +boost/range/end.hpp +- +boost/algorithm/string/sequence_traits.hpp +- + +src/3rdparty/include/boost/algorithm/string/detail/util.hpp +boost/algorithm/string/config.hpp +- +functional +- +boost/range/iterator_range.hpp +- + +src/3rdparty/include/boost/algorithm/string/find_format.hpp +deque +- +boost/detail/iterator.hpp +- +boost/range/iterator_range.hpp +- +boost/range/begin.hpp +- +boost/range/end.hpp +- +boost/range/const_iterator.hpp +- +boost/range/as_literal.hpp +- +boost/algorithm/string/concept.hpp +- +boost/algorithm/string/detail/find_format.hpp +- +boost/algorithm/string/detail/find_format_all.hpp +- + +src/3rdparty/include/boost/algorithm/string/finder.hpp +boost/algorithm/string/config.hpp +- +boost/range/iterator_range.hpp +- +boost/range/begin.hpp +- +boost/range/end.hpp +- +boost/range/iterator.hpp +- +boost/range/const_iterator.hpp +- +boost/algorithm/string/constants.hpp +- +boost/algorithm/string/detail/finder.hpp +- +boost/algorithm/string/compare.hpp +- + +src/3rdparty/include/boost/algorithm/string/formatter.hpp +boost/detail/iterator.hpp +- +boost/range/value_type.hpp +- +boost/range/iterator_range.hpp +- +boost/range/as_literal.hpp +- +boost/algorithm/string/detail/formatter.hpp +- + +src/3rdparty/include/boost/algorithm/string/replace.hpp +boost/algorithm/string/config.hpp +- +boost/range/iterator_range.hpp +- +boost/range/begin.hpp +- +boost/range/end.hpp +- +boost/range/iterator.hpp +- +boost/range/const_iterator.hpp +- +boost/algorithm/string/find_format.hpp +- +boost/algorithm/string/finder.hpp +- +boost/algorithm/string/formatter.hpp +- +boost/algorithm/string/compare.hpp +- + +src/3rdparty/include/boost/algorithm/string/sequence_traits.hpp +boost/config.hpp +- +boost/mpl/bool.hpp +- +boost/algorithm/string/yes_no_type.hpp +- + +src/3rdparty/include/boost/algorithm/string/yes_no_type.hpp + +src/3rdparty/include/boost/assert.hpp +boost/current_function.hpp +- +assert.h +- + +src/3rdparty/include/boost/bind.hpp +boost/config.hpp +- +boost/ref.hpp +- +boost/mem_fn.hpp +- +boost/type.hpp +- +boost/is_placeholder.hpp +- +boost/bind/arg.hpp +- +boost/detail/workaround.hpp +- +boost/visit_each.hpp +- +boost/bind/storage.hpp +- +boost/bind/bind_template.hpp +- +boost/bind/bind_template.hpp +- +boost/bind/bind_template.hpp +- +boost/bind/bind_cc.hpp +- +boost/bind/bind_cc.hpp +- +boost/bind/bind_cc.hpp +- +boost/bind/bind_cc.hpp +- +boost/bind/bind_mf_cc.hpp +- +boost/bind/bind_mf2_cc.hpp +- +boost/bind/bind_mf_cc.hpp +- +boost/bind/bind_mf2_cc.hpp +- +boost/bind/bind_mf_cc.hpp +- +boost/bind/bind_mf2_cc.hpp +- +boost/bind/bind_mf_cc.hpp +- +boost/bind/bind_mf2_cc.hpp +- +boost/bind/placeholders.hpp +- + +src/3rdparty/include/boost/bind/arg.hpp +boost/config.hpp +- +boost/is_placeholder.hpp +- + +src/3rdparty/include/boost/bind/bind_cc.hpp + +src/3rdparty/include/boost/bind/bind_mf2_cc.hpp + +src/3rdparty/include/boost/bind/bind_mf_cc.hpp + +src/3rdparty/include/boost/bind/bind_template.hpp + +src/3rdparty/include/boost/bind/mem_fn_cc.hpp + +src/3rdparty/include/boost/bind/mem_fn_template.hpp + +src/3rdparty/include/boost/bind/mem_fn_vw.hpp + +src/3rdparty/include/boost/bind/placeholders.hpp +boost/bind/arg.hpp +- +boost/config.hpp +- + +src/3rdparty/include/boost/bind/storage.hpp +boost/config.hpp +- +boost/bind/arg.hpp +- + +src/3rdparty/include/boost/call_traits.hpp +boost/config.hpp +- +boost/detail/ob_call_traits.hpp +- +boost/detail/call_traits.hpp +- + +src/3rdparty/include/boost/checked_delete.hpp + +src/3rdparty/include/boost/concept/assert.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- +boost/concept/detail/msvc.hpp +- +boost/concept/detail/borland.hpp +- +boost/concept/detail/general.hpp +- + +src/3rdparty/include/boost/concept/detail/borland.hpp +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/concept/detail/concept_def.hpp +boost/preprocessor/seq/for_each_i.hpp +- +boost/preprocessor/seq/enum.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/concept/detail/concept_undef.hpp + +src/3rdparty/include/boost/concept/detail/general.hpp +boost/preprocessor/cat.hpp +- +boost/concept/detail/has_constraints.hpp +- +boost/mpl/if.hpp +- + +src/3rdparty/include/boost/concept/detail/has_constraints.hpp +boost/mpl/bool.hpp +- +boost/detail/workaround.hpp +- + +src/3rdparty/include/boost/concept/detail/msvc.hpp +boost/preprocessor/cat.hpp +- +boost/concept/detail/has_constraints.hpp +- +boost/mpl/if.hpp +- + +src/3rdparty/include/boost/concept/usage.hpp +boost/concept/assert.hpp +- +boost/detail/workaround.hpp +- + +src/3rdparty/include/boost/concept_check.hpp +boost/concept/assert.hpp +- +boost/iterator.hpp +- +boost/type_traits/conversion_traits.hpp +- +utility +- +boost/type_traits/is_same.hpp +- +boost/type_traits/is_void.hpp +- +boost/mpl/assert.hpp +- +boost/mpl/bool.hpp +- +boost/detail/workaround.hpp +- +boost/detail/iterator.hpp +- +boost/concept/usage.hpp +- +boost/concept/detail/concept_def.hpp +- +boost/concept/detail/concept_undef.hpp +- + +src/3rdparty/include/boost/config.hpp +boost/config/select_compiler_config.hpp +- +boost/config/select_stdlib_config.hpp +- +boost/config/select_platform_config.hpp +- +boost/config/suffix.hpp +- + +src/3rdparty/include/boost/config/abi_prefix.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/config/abi_suffix.hpp + +src/3rdparty/include/boost/config/auto_link.hpp +boost/config.hpp +- +boost/version.hpp +- + +src/3rdparty/include/boost/config/no_tr1/functional.hpp +functional +- + +src/3rdparty/include/boost/config/no_tr1/memory.hpp +memory +- + +src/3rdparty/include/boost/config/no_tr1/utility.hpp +utility +- + +src/3rdparty/include/boost/config/posix_features.hpp +unistd.h +- + +src/3rdparty/include/boost/config/requires_threads.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/config/select_compiler_config.hpp + +src/3rdparty/include/boost/config/select_platform_config.hpp +boost/config/posix_features.hpp +- + +src/3rdparty/include/boost/config/select_stdlib_config.hpp +boost/config/no_tr1/utility.hpp +- + +src/3rdparty/include/boost/config/suffix.hpp +limits.h +- +cstddef +- +boost/type.hpp +src/3rdparty/include/boost/config/boost/type.hpp +boost/non_type.hpp +src/3rdparty/include/boost/config/boost/non_type.hpp + +src/3rdparty/include/boost/cstdint.hpp +boost/config.hpp +- +inttypes.h +- +inttypes.h +- +stdint.h +- +inttypes.h +- +boost/limits.hpp +- +limits.h +- + +src/3rdparty/include/boost/current_function.hpp + +src/3rdparty/include/boost/date_time/adjust_functors.hpp +boost/date_time/date.hpp +src/3rdparty/include/boost/date_time/boost/date_time/date.hpp +boost/date_time/wrapping_int.hpp +src/3rdparty/include/boost/date_time/boost/date_time/wrapping_int.hpp + +src/3rdparty/include/boost/date_time/c_time.hpp +boost/date_time/compiler_config.hpp +src/3rdparty/include/boost/date_time/boost/date_time/compiler_config.hpp +ctime +- +sys/time.h +- +time.h +- + +src/3rdparty/include/boost/date_time/compiler_config.hpp +boost/detail/workaround.hpp +src/3rdparty/include/boost/date_time/boost/detail/workaround.hpp +boost/date_time/locale_config.hpp +src/3rdparty/include/boost/date_time/boost/date_time/locale_config.hpp +boost/cstdint.hpp +src/3rdparty/include/boost/date_time/boost/cstdint.hpp +locale +- +boost/config/auto_link.hpp +- + +src/3rdparty/include/boost/date_time/constrained_value.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/date_time/date.hpp +boost/date_time/year_month_day.hpp +src/3rdparty/include/boost/date_time/boost/date_time/year_month_day.hpp +boost/date_time/special_defs.hpp +src/3rdparty/include/boost/date_time/boost/date_time/special_defs.hpp +boost/operators.hpp +src/3rdparty/include/boost/date_time/boost/operators.hpp + +src/3rdparty/include/boost/date_time/date_clock_device.hpp +boost/date_time/c_time.hpp +src/3rdparty/include/boost/date_time/boost/date_time/c_time.hpp + +src/3rdparty/include/boost/date_time/date_defs.hpp + +src/3rdparty/include/boost/date_time/date_duration.hpp +boost/operators.hpp +- + +src/3rdparty/include/boost/date_time/date_duration_types.hpp +boost/date_time/int_adapter.hpp +- +boost/date_time/special_defs.hpp +- +boost/date_time/date_duration.hpp +- + +src/3rdparty/include/boost/date_time/date_facet.hpp +boost/algorithm/string/replace.hpp +src/3rdparty/include/boost/date_time/boost/algorithm/string/replace.hpp +boost/date_time/period.hpp +src/3rdparty/include/boost/date_time/boost/date_time/period.hpp +boost/date_time/special_values_formatter.hpp +src/3rdparty/include/boost/date_time/boost/date_time/special_values_formatter.hpp +boost/date_time/period_formatter.hpp +src/3rdparty/include/boost/date_time/boost/date_time/period_formatter.hpp +boost/date_time/period_parser.hpp +src/3rdparty/include/boost/date_time/boost/date_time/period_parser.hpp +boost/date_time/date_generator_formatter.hpp +src/3rdparty/include/boost/date_time/boost/date_time/date_generator_formatter.hpp +boost/date_time/date_generator_parser.hpp +src/3rdparty/include/boost/date_time/boost/date_time/date_generator_parser.hpp +boost/date_time/format_date_parser.hpp +src/3rdparty/include/boost/date_time/boost/date_time/format_date_parser.hpp +string +- +vector +- + +src/3rdparty/include/boost/date_time/date_format_simple.hpp +boost/date_time/parse_format_base.hpp +src/3rdparty/include/boost/date_time/boost/date_time/parse_format_base.hpp + +src/3rdparty/include/boost/date_time/date_formatting.hpp +boost/date_time/iso_format.hpp +src/3rdparty/include/boost/date_time/boost/date_time/iso_format.hpp +boost/date_time/compiler_config.hpp +src/3rdparty/include/boost/date_time/boost/date_time/compiler_config.hpp +string +- +sstream +- +iomanip +- + +src/3rdparty/include/boost/date_time/date_formatting_limited.hpp +boost/date_time/iso_format.hpp +src/3rdparty/include/boost/date_time/boost/date_time/iso_format.hpp +boost/date_time/compiler_config.hpp +src/3rdparty/include/boost/date_time/boost/date_time/compiler_config.hpp +string +- +sstream +- +iomanip +- + +src/3rdparty/include/boost/date_time/date_generator_formatter.hpp +iostream +- +string +- +vector +- +algorithm +- +boost/date_time/date_generators.hpp +src/3rdparty/include/boost/date_time/boost/date_time/date_generators.hpp + +src/3rdparty/include/boost/date_time/date_generator_parser.hpp +boost/date_time/string_parse_tree.hpp +src/3rdparty/include/boost/date_time/boost/date_time/string_parse_tree.hpp +boost/date_time/date_generators.hpp +src/3rdparty/include/boost/date_time/boost/date_time/date_generators.hpp +boost/date_time/format_date_parser.hpp +src/3rdparty/include/boost/date_time/boost/date_time/format_date_parser.hpp +string +- +vector +- + +src/3rdparty/include/boost/date_time/date_generators.hpp +stdexcept +- +sstream +- +boost/date_time/date.hpp +src/3rdparty/include/boost/date_time/boost/date_time/date.hpp +boost/date_time/compiler_config.hpp +src/3rdparty/include/boost/date_time/boost/date_time/compiler_config.hpp + +src/3rdparty/include/boost/date_time/date_iterator.hpp +iterator +- + +src/3rdparty/include/boost/date_time/dst_rules.hpp +boost/date_time/date_generators.hpp +src/3rdparty/include/boost/date_time/boost/date_time/date_generators.hpp +boost/date_time/period.hpp +src/3rdparty/include/boost/date_time/boost/date_time/period.hpp +boost/date_time/date_defs.hpp +src/3rdparty/include/boost/date_time/boost/date_time/date_defs.hpp +stdexcept +- + +src/3rdparty/include/boost/date_time/filetime_functions.hpp +boost/date_time/compiler_config.hpp +- +windows.h +- +boost/cstdint.hpp +- +boost/date_time/time.hpp +- + +src/3rdparty/include/boost/date_time/format_date_parser.hpp +boost/lexical_cast.hpp +src/3rdparty/include/boost/date_time/boost/lexical_cast.hpp +boost/date_time/string_parse_tree.hpp +src/3rdparty/include/boost/date_time/boost/date_time/string_parse_tree.hpp +boost/date_time/strings_from_facet.hpp +src/3rdparty/include/boost/date_time/boost/date_time/strings_from_facet.hpp +boost/date_time/special_values_parser.hpp +src/3rdparty/include/boost/date_time/boost/date_time/special_values_parser.hpp +string +- +vector +- + +src/3rdparty/include/boost/date_time/gregorian/conversion.hpp +exception +- +boost/date_time/gregorian/gregorian_types.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/gregorian_types.hpp +boost/date_time/c_time.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/c_time.hpp +boost/date_time/gregorian/formatters_limited.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/formatters_limited.hpp +boost/date_time/gregorian/formatters.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/formatters.hpp +sstream +- +boost/date_time/gregorian/gregorian_io.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/gregorian_io.hpp + +src/3rdparty/include/boost/date_time/gregorian/formatters.hpp +boost/date_time/compiler_config.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/compiler_config.hpp +boost/date_time/gregorian/gregorian_types.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/gregorian_types.hpp +boost/date_time/date_formatting_limited.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_formatting_limited.hpp +boost/date_time/date_formatting.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_formatting.hpp +boost/date_time/iso_format.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/iso_format.hpp +boost/date_time/date_format_simple.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_format_simple.hpp + +src/3rdparty/include/boost/date_time/gregorian/formatters_limited.hpp +boost/date_time/gregorian/gregorian_types.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/gregorian_types.hpp +boost/date_time/date_formatting_limited.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_formatting_limited.hpp +boost/date_time/iso_format.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/iso_format.hpp +boost/date_time/date_format_simple.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_format_simple.hpp +boost/date_time/compiler_config.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/compiler_config.hpp + +src/3rdparty/include/boost/date_time/gregorian/greg_calendar.hpp +boost/date_time/gregorian/greg_weekday.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/greg_weekday.hpp +boost/date_time/gregorian/greg_day_of_year.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/greg_day_of_year.hpp +boost/date_time/gregorian_calendar.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian_calendar.hpp +boost/date_time/gregorian/greg_ymd.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/greg_ymd.hpp +boost/date_time/int_adapter.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/int_adapter.hpp + +src/3rdparty/include/boost/date_time/gregorian/greg_date.hpp +boost/date_time/date.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date.hpp +boost/date_time/special_defs.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/special_defs.hpp +boost/date_time/gregorian/greg_calendar.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/greg_calendar.hpp +boost/date_time/gregorian/greg_duration.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/greg_duration.hpp + +src/3rdparty/include/boost/date_time/gregorian/greg_day.hpp +boost/date_time/constrained_value.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/constrained_value.hpp +stdexcept +- +string +- + +src/3rdparty/include/boost/date_time/gregorian/greg_day_of_year.hpp +boost/date_time/constrained_value.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/constrained_value.hpp +stdexcept +- +string +- + +src/3rdparty/include/boost/date_time/gregorian/greg_duration.hpp +boost/date_time/date_duration.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_duration.hpp +boost/date_time/date_duration_types.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_duration_types.hpp +boost/date_time/int_adapter.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/int_adapter.hpp + +src/3rdparty/include/boost/date_time/gregorian/greg_duration_types.hpp +boost/date_time/gregorian/greg_date.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/greg_date.hpp +boost/date_time/int_adapter.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/int_adapter.hpp +boost/date_time/adjust_functors.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/adjust_functors.hpp +boost/date_time/date_duration.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_duration.hpp +boost/date_time/date_duration_types.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_duration_types.hpp + +src/3rdparty/include/boost/date_time/gregorian/greg_month.hpp +boost/date_time/constrained_value.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/constrained_value.hpp +boost/date_time/date_defs.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_defs.hpp +boost/shared_ptr.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/shared_ptr.hpp +boost/date_time/compiler_config.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/compiler_config.hpp +stdexcept +- +string +- +map +- +algorithm +- +cctype +- + +src/3rdparty/include/boost/date_time/gregorian/greg_weekday.hpp +boost/date_time/constrained_value.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/constrained_value.hpp +boost/date_time/date_defs.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_defs.hpp +boost/date_time/compiler_config.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/compiler_config.hpp +stdexcept +- +string +- + +src/3rdparty/include/boost/date_time/gregorian/greg_year.hpp +boost/date_time/constrained_value.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/constrained_value.hpp +stdexcept +- +string +- + +src/3rdparty/include/boost/date_time/gregorian/greg_ymd.hpp +boost/date_time/year_month_day.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/year_month_day.hpp +boost/date_time/special_defs.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/special_defs.hpp +boost/date_time/gregorian/greg_day.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/greg_day.hpp +boost/date_time/gregorian/greg_year.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/greg_year.hpp +boost/date_time/gregorian/greg_month.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/greg_month.hpp + +src/3rdparty/include/boost/date_time/gregorian/gregorian_io.hpp +boost/date_time/date_facet.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_facet.hpp +boost/io/ios_state.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/io/ios_state.hpp +iostream +- +locale +- + +src/3rdparty/include/boost/date_time/gregorian/gregorian_types.hpp +boost/date_time/date.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date.hpp +boost/date_time/period.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/period.hpp +boost/date_time/gregorian/greg_calendar.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/greg_calendar.hpp +boost/date_time/gregorian/greg_duration.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/greg_duration.hpp +boost/date_time/gregorian/greg_duration_types.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/greg_duration_types.hpp +boost/date_time/gregorian/greg_date.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/gregorian/greg_date.hpp +boost/date_time/date_generators.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_generators.hpp +boost/date_time/date_clock_device.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_clock_device.hpp +boost/date_time/date_iterator.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/date_iterator.hpp +boost/date_time/adjust_functors.hpp +src/3rdparty/include/boost/date_time/gregorian/boost/date_time/adjust_functors.hpp + +src/3rdparty/include/boost/date_time/gregorian_calendar.hpp +boost/date_time/gregorian_calendar.ipp +src/3rdparty/include/boost/date_time/boost/date_time/gregorian_calendar.ipp + +src/3rdparty/include/boost/date_time/gregorian_calendar.ipp + +src/3rdparty/include/boost/date_time/int_adapter.hpp +boost/config.hpp +src/3rdparty/include/boost/date_time/boost/config.hpp +boost/limits.hpp +src/3rdparty/include/boost/date_time/boost/limits.hpp +boost/date_time/special_defs.hpp +src/3rdparty/include/boost/date_time/boost/date_time/special_defs.hpp +boost/date_time/locale_config.hpp +src/3rdparty/include/boost/date_time/boost/date_time/locale_config.hpp +iostream +- + +src/3rdparty/include/boost/date_time/iso_format.hpp +boost/date_time/parse_format_base.hpp +src/3rdparty/include/boost/date_time/boost/date_time/parse_format_base.hpp + +src/3rdparty/include/boost/date_time/locale_config.hpp +boost/config.hpp +src/3rdparty/include/boost/date_time/boost/config.hpp +boost/detail/workaround.hpp +src/3rdparty/include/boost/date_time/boost/detail/workaround.hpp + +src/3rdparty/include/boost/date_time/microsec_time_clock.hpp +boost/detail/workaround.hpp +- +boost/date_time/c_time.hpp +src/3rdparty/include/boost/date_time/boost/date_time/c_time.hpp +boost/date_time/time_clock.hpp +src/3rdparty/include/boost/date_time/boost/date_time/time_clock.hpp +boost/cstdint.hpp +src/3rdparty/include/boost/date_time/boost/cstdint.hpp +boost/shared_ptr.hpp +src/3rdparty/include/boost/date_time/boost/shared_ptr.hpp +windows.h +- + +src/3rdparty/include/boost/date_time/parse_format_base.hpp + +src/3rdparty/include/boost/date_time/period.hpp +boost/operators.hpp +src/3rdparty/include/boost/date_time/boost/operators.hpp + +src/3rdparty/include/boost/date_time/period_formatter.hpp + +src/3rdparty/include/boost/date_time/period_parser.hpp +boost/date_time/string_parse_tree.hpp +src/3rdparty/include/boost/date_time/boost/date_time/string_parse_tree.hpp +boost/date_time/string_convert.hpp +src/3rdparty/include/boost/date_time/boost/date_time/string_convert.hpp + +src/3rdparty/include/boost/date_time/posix_time/conversion.hpp +boost/date_time/posix_time/ptime.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/posix_time/ptime.hpp +boost/date_time/posix_time/posix_time_duration.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/posix_time/posix_time_duration.hpp +boost/date_time/filetime_functions.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/filetime_functions.hpp +boost/date_time/c_time.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/c_time.hpp +boost/date_time/gregorian/conversion.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/gregorian/conversion.hpp + +src/3rdparty/include/boost/date_time/posix_time/date_duration_operators.hpp +boost/date_time/gregorian/greg_duration_types.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/gregorian/greg_duration_types.hpp +boost/date_time/posix_time/ptime.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/posix_time/ptime.hpp + +src/3rdparty/include/boost/date_time/posix_time/posix_time_config.hpp +boost/date_time/time_duration.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/time_duration.hpp +boost/date_time/time_resolution_traits.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/time_resolution_traits.hpp +boost/date_time/gregorian/gregorian_types.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/gregorian/gregorian_types.hpp +boost/date_time/wrapping_int.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/wrapping_int.hpp +boost/limits.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/limits.hpp +boost/date_time/compiler_config.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/compiler_config.hpp +boost/cstdint.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/cstdint.hpp +cmath +- +cstdlib +- + +src/3rdparty/include/boost/date_time/posix_time/posix_time_duration.hpp +boost/date_time/posix_time/posix_time_config.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/posix_time/posix_time_config.hpp + +src/3rdparty/include/boost/date_time/posix_time/posix_time_system.hpp +boost/date_time/posix_time/posix_time_config.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/posix_time/posix_time_config.hpp +boost/date_time/time_system_split.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/time_system_split.hpp +boost/date_time/time_system_counted.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/time_system_counted.hpp +boost/date_time/compiler_config.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/compiler_config.hpp + +src/3rdparty/include/boost/date_time/posix_time/posix_time_types.hpp +boost/date_time/time_clock.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/time_clock.hpp +boost/date_time/microsec_time_clock.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/microsec_time_clock.hpp +boost/date_time/posix_time/ptime.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/posix_time/ptime.hpp +boost/date_time/posix_time/date_duration_operators.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/posix_time/date_duration_operators.hpp +boost/date_time/posix_time/posix_time_duration.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/posix_time/posix_time_duration.hpp +boost/date_time/posix_time/posix_time_system.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/posix_time/posix_time_system.hpp +boost/date_time/posix_time/time_period.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/posix_time/time_period.hpp +boost/date_time/time_iterator.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/time_iterator.hpp +boost/date_time/dst_rules.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/dst_rules.hpp + +src/3rdparty/include/boost/date_time/posix_time/ptime.hpp +boost/date_time/posix_time/posix_time_system.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/posix_time/posix_time_system.hpp +boost/date_time/time.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/time.hpp + +src/3rdparty/include/boost/date_time/posix_time/time_period.hpp +boost/date_time/period.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/period.hpp +boost/date_time/posix_time/posix_time_duration.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/posix_time/posix_time_duration.hpp +boost/date_time/posix_time/ptime.hpp +src/3rdparty/include/boost/date_time/posix_time/boost/date_time/posix_time/ptime.hpp + +src/3rdparty/include/boost/date_time/special_defs.hpp + +src/3rdparty/include/boost/date_time/special_values_formatter.hpp +vector +- +string +- +boost/date_time/special_defs.hpp +src/3rdparty/include/boost/date_time/boost/date_time/special_defs.hpp + +src/3rdparty/include/boost/date_time/special_values_parser.hpp +boost/date_time/string_parse_tree.hpp +src/3rdparty/include/boost/date_time/boost/date_time/string_parse_tree.hpp +boost/date_time/special_defs.hpp +src/3rdparty/include/boost/date_time/boost/date_time/special_defs.hpp +string +- +vector +- + +src/3rdparty/include/boost/date_time/string_convert.hpp +boost/date_time/compiler_config.hpp +src/3rdparty/include/boost/date_time/boost/date_time/compiler_config.hpp +string +- + +src/3rdparty/include/boost/date_time/string_parse_tree.hpp +boost/lexical_cast.hpp +src/3rdparty/include/boost/date_time/boost/lexical_cast.hpp +boost/algorithm/string/case_conv.hpp +src/3rdparty/include/boost/date_time/boost/algorithm/string/case_conv.hpp +map +- +string +- +vector +- +algorithm +- + +src/3rdparty/include/boost/date_time/strings_from_facet.hpp +sstream +- +string +- +vector +- +locale +- + +src/3rdparty/include/boost/date_time/time.hpp +boost/date_time/time_defs.hpp +src/3rdparty/include/boost/date_time/boost/date_time/time_defs.hpp +boost/operators.hpp +src/3rdparty/include/boost/date_time/boost/operators.hpp +string +- + +src/3rdparty/include/boost/date_time/time_clock.hpp +boost/date_time/c_time.hpp +src/3rdparty/include/boost/date_time/boost/date_time/c_time.hpp +boost/shared_ptr.hpp +src/3rdparty/include/boost/date_time/boost/shared_ptr.hpp + +src/3rdparty/include/boost/date_time/time_defs.hpp + +src/3rdparty/include/boost/date_time/time_duration.hpp +boost/operators.hpp +src/3rdparty/include/boost/date_time/boost/operators.hpp +boost/date_time/time_defs.hpp +src/3rdparty/include/boost/date_time/boost/date_time/time_defs.hpp +boost/date_time/special_defs.hpp +src/3rdparty/include/boost/date_time/boost/date_time/special_defs.hpp +boost/date_time/compiler_config.hpp +src/3rdparty/include/boost/date_time/boost/date_time/compiler_config.hpp + +src/3rdparty/include/boost/date_time/time_iterator.hpp + +src/3rdparty/include/boost/date_time/time_resolution_traits.hpp +boost/date_time/time_defs.hpp +src/3rdparty/include/boost/date_time/boost/date_time/time_defs.hpp +boost/date_time/int_adapter.hpp +src/3rdparty/include/boost/date_time/boost/date_time/int_adapter.hpp +boost/cstdint.hpp +src/3rdparty/include/boost/date_time/boost/cstdint.hpp + +src/3rdparty/include/boost/date_time/time_system_counted.hpp +boost/date_time/time_defs.hpp +src/3rdparty/include/boost/date_time/boost/date_time/time_defs.hpp +string +- + +src/3rdparty/include/boost/date_time/time_system_split.hpp +string +- +boost/date_time/compiler_config.hpp +src/3rdparty/include/boost/date_time/boost/date_time/compiler_config.hpp +boost/date_time/special_defs.hpp +src/3rdparty/include/boost/date_time/boost/date_time/special_defs.hpp + +src/3rdparty/include/boost/date_time/wrapping_int.hpp + +src/3rdparty/include/boost/date_time/year_month_day.hpp + +src/3rdparty/include/boost/detail/atomic_count.hpp +boost/config.hpp +- +boost/detail/atomic_count_pthreads.hpp +- +boost/detail/atomic_count_gcc_x86.hpp +- +boost/detail/atomic_count_win32.hpp +- +boost/detail/atomic_count_sync.hpp +- +boost/detail/atomic_count_gcc.hpp +- +boost/detail/atomic_count_pthreads.hpp +- + +src/3rdparty/include/boost/detail/atomic_count_gcc.hpp +bits/atomicity.h +- + +src/3rdparty/include/boost/detail/atomic_count_gcc_x86.hpp + +src/3rdparty/include/boost/detail/atomic_count_pthreads.hpp +pthread.h +- + +src/3rdparty/include/boost/detail/atomic_count_sync.hpp + +src/3rdparty/include/boost/detail/atomic_count_win32.hpp +boost/detail/interlocked.hpp +- + +src/3rdparty/include/boost/detail/bad_weak_ptr.hpp +exception +- + +src/3rdparty/include/boost/detail/call_traits.hpp +boost/config.hpp +- +cstddef +- +boost/type_traits/is_arithmetic.hpp +- +boost/type_traits/is_pointer.hpp +- +boost/detail/workaround.hpp +- + +src/3rdparty/include/boost/detail/endian.hpp +endian.h +- + +src/3rdparty/include/boost/detail/indirect_traits.hpp +boost/type_traits/is_function.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/is_pointer.hpp +- +boost/type_traits/is_class.hpp +- +boost/type_traits/is_const.hpp +- +boost/type_traits/is_volatile.hpp +- +boost/type_traits/is_member_function_pointer.hpp +- +boost/type_traits/is_member_pointer.hpp +- +boost/type_traits/remove_cv.hpp +- +boost/type_traits/remove_reference.hpp +- +boost/type_traits/remove_pointer.hpp +- +boost/type_traits/detail/ice_and.hpp +- +boost/detail/workaround.hpp +- +boost/mpl/eval_if.hpp +- +boost/mpl/if.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/and.hpp +- +boost/mpl/not.hpp +- +boost/mpl/aux_/lambda_support.hpp +- +boost/detail/is_function_ref_tester.hpp +- + +src/3rdparty/include/boost/detail/interlocked.hpp +boost/config.hpp +- +windows.h +- + +src/3rdparty/include/boost/detail/is_function_ref_tester.hpp +boost/type_traits/detail/yes_no_type.hpp +src/3rdparty/include/boost/detail/boost/type_traits/detail/yes_no_type.hpp +boost/type_traits/config.hpp +src/3rdparty/include/boost/detail/boost/type_traits/config.hpp +boost/preprocessor/iterate.hpp +src/3rdparty/include/boost/detail/boost/preprocessor/iterate.hpp +boost/preprocessor/enum_params.hpp +src/3rdparty/include/boost/detail/boost/preprocessor/enum_params.hpp +boost/preprocessor/comma_if.hpp +src/3rdparty/include/boost/detail/boost/preprocessor/comma_if.hpp + +src/3rdparty/include/boost/detail/iterator.hpp +boost/config.hpp +- +iterator +- +boost/type_traits/remove_const.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/is_pointer.hpp +- +boost/type_traits/is_same.hpp +- +boost/type_traits/remove_pointer.hpp +- +boost/type_traits/is_base_and_derived.hpp +- +boost/mpl/if.hpp +- +boost/mpl/has_xxx.hpp +- +cstddef +- +boost/type_traits/detail/bool_trait_def.hpp +src/3rdparty/include/boost/detail/boost/type_traits/detail/bool_trait_def.hpp + +src/3rdparty/include/boost/detail/lcast_precision.hpp +climits +- +ios +- +limits +- +boost/config.hpp +- +boost/integer_traits.hpp +- +boost/mpl/if.hpp +- +boost/type_traits/is_abstract.hpp +- +boost/assert.hpp +- +boost/static_assert.hpp +- + +src/3rdparty/include/boost/detail/lightweight_mutex.hpp +boost/config.hpp +- +boost/detail/lwm_nop.hpp +- +boost/detail/lwm_pthreads.hpp +- +boost/detail/lwm_win32_cs.hpp +- + +src/3rdparty/include/boost/detail/limits.hpp +climits +- +cfloat +- +boost/config.hpp +- +boost/detail/endian.hpp +- +cwchar +- + +src/3rdparty/include/boost/detail/lwm_nop.hpp + +src/3rdparty/include/boost/detail/lwm_pthreads.hpp +pthread.h +- + +src/3rdparty/include/boost/detail/lwm_win32_cs.hpp +windows.h +- + +src/3rdparty/include/boost/detail/ob_call_traits.hpp +boost/config.hpp +- +boost/type_traits/arithmetic_traits.hpp +- +boost/type_traits/composite_traits.hpp +- + +src/3rdparty/include/boost/detail/quick_allocator.hpp +boost/config.hpp +- +boost/detail/lightweight_mutex.hpp +- +boost/type_traits/type_with_alignment.hpp +- +boost/type_traits/alignment_of.hpp +- +new +- +cstddef +- + +src/3rdparty/include/boost/detail/reference_content.hpp +boost/config.hpp +src/3rdparty/include/boost/detail/boost/config.hpp +boost/mpl/bool.hpp +src/3rdparty/include/boost/detail/boost/mpl/bool.hpp +boost/type_traits/has_nothrow_copy.hpp +src/3rdparty/include/boost/detail/boost/type_traits/has_nothrow_copy.hpp +boost/mpl/if.hpp +src/3rdparty/include/boost/detail/boost/mpl/if.hpp +boost/type_traits/is_reference.hpp +src/3rdparty/include/boost/detail/boost/type_traits/is_reference.hpp +boost/mpl/void.hpp +src/3rdparty/include/boost/detail/boost/mpl/void.hpp + +src/3rdparty/include/boost/detail/shared_count.hpp +boost/config.hpp +- +boost/checked_delete.hpp +- +boost/throw_exception.hpp +- +boost/detail/bad_weak_ptr.hpp +- +boost/detail/sp_counted_base.hpp +- +boost/detail/sp_counted_impl.hpp +- +boost/config/no_tr1/memory.hpp +- +functional +- +new +- + +src/3rdparty/include/boost/detail/shared_ptr_nmt.hpp +boost/assert.hpp +- +boost/checked_delete.hpp +- +boost/throw_exception.hpp +- +boost/detail/atomic_count.hpp +- +memory +- +algorithm +- +functional +- +new +- + +src/3rdparty/include/boost/detail/sp_convertible.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/detail/sp_counted_base.hpp +boost/config.hpp +- +boost/detail/sp_counted_base_nt.hpp +- +boost/detail/sp_counted_base_spin.hpp +- +boost/detail/sp_counted_base_pt.hpp +- +boost/detail/sp_counted_base_nt.hpp +- +boost/detail/sp_counted_base_gcc_x86.hpp +- +boost/detail/sp_counted_base_gcc_ia64.hpp +- +boost/detail/sp_counted_base_acc_ia64.hpp +- +boost/detail/sp_counted_base_cw_ppc.hpp +- +boost/detail/sp_counted_base_gcc_ppc.hpp +- +boost/detail/sp_counted_base_sync.hpp +- +boost/detail/sp_counted_base_gcc_sparc.hpp +- +boost/detail/sp_counted_base_w32.hpp +- +boost/detail/sp_counted_base_nt.hpp +- +boost/detail/sp_counted_base_spin.hpp +- + +src/3rdparty/include/boost/detail/sp_counted_base_acc_ia64.hpp +boost/detail/sp_typeinfo.hpp +- +machine/sys/inline.h +- + +src/3rdparty/include/boost/detail/sp_counted_base_cw_ppc.hpp +boost/detail/sp_typeinfo.hpp +- + +src/3rdparty/include/boost/detail/sp_counted_base_gcc_ia64.hpp +boost/detail/sp_typeinfo.hpp +- + +src/3rdparty/include/boost/detail/sp_counted_base_gcc_ppc.hpp +boost/detail/sp_typeinfo.hpp +- + +src/3rdparty/include/boost/detail/sp_counted_base_gcc_sparc.hpp +boost/detail/sp_typeinfo.hpp +- +inttypes.h +- + +src/3rdparty/include/boost/detail/sp_counted_base_gcc_x86.hpp +boost/detail/sp_typeinfo.hpp +- + +src/3rdparty/include/boost/detail/sp_counted_base_nt.hpp +boost/detail/sp_typeinfo.hpp +- + +src/3rdparty/include/boost/detail/sp_counted_base_pt.hpp +boost/detail/sp_typeinfo.hpp +- +pthread.h +- + +src/3rdparty/include/boost/detail/sp_counted_base_spin.hpp +boost/detail/sp_typeinfo.hpp +- +boost/detail/spinlock_pool.hpp +- + +src/3rdparty/include/boost/detail/sp_counted_base_sync.hpp +boost/detail/sp_typeinfo.hpp +- +limits.h +- +ia64intrin.h +- + +src/3rdparty/include/boost/detail/sp_counted_base_w32.hpp +boost/detail/interlocked.hpp +- +boost/detail/workaround.hpp +- +boost/detail/sp_typeinfo.hpp +- + +src/3rdparty/include/boost/detail/sp_counted_impl.hpp +boost/config.hpp +- +boost/checked_delete.hpp +- +boost/detail/sp_counted_base.hpp +- +boost/detail/quick_allocator.hpp +- +memory +- +cstddef +- + +src/3rdparty/include/boost/detail/sp_typeinfo.hpp +boost/config.hpp +- +typeinfo +- + +src/3rdparty/include/boost/detail/spinlock.hpp +boost/config.hpp +- +boost/detail/spinlock_gcc_arm.hpp +- +boost/detail/spinlock_sync.hpp +- +boost/detail/spinlock_w32.hpp +- +boost/detail/spinlock_pt.hpp +- +boost/detail/spinlock_nt.hpp +- + +src/3rdparty/include/boost/detail/spinlock_gcc_arm.hpp +boost/detail/yield_k.hpp +- + +src/3rdparty/include/boost/detail/spinlock_nt.hpp +boost/assert.hpp +- + +src/3rdparty/include/boost/detail/spinlock_pool.hpp +boost/config.hpp +- +boost/detail/spinlock.hpp +- +cstddef +- + +src/3rdparty/include/boost/detail/spinlock_pt.hpp +pthread.h +- + +src/3rdparty/include/boost/detail/spinlock_sync.hpp +boost/detail/yield_k.hpp +- +ia64intrin.h +- + +src/3rdparty/include/boost/detail/spinlock_w32.hpp +boost/detail/interlocked.hpp +- +boost/detail/yield_k.hpp +- + +src/3rdparty/include/boost/detail/workaround.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/detail/yield_k.hpp +boost/config.hpp +- +windows.h +- +sched.h +- +time.h +- + +src/3rdparty/include/boost/enable_shared_from_this.hpp +boost/weak_ptr.hpp +- +boost/shared_ptr.hpp +- +boost/assert.hpp +- +boost/config.hpp +- + +src/3rdparty/include/boost/exception/detail/cloning_base.hpp +boost/detail/workaround.hpp +- + +src/3rdparty/include/boost/exception/detail/counted_base.hpp +boost/detail/workaround.hpp +- + +src/3rdparty/include/boost/exception/enable_current_exception.hpp +boost/exception/exception.hpp +- +boost/exception/detail/cloning_base.hpp +- +boost/detail/atomic_count.hpp +- +boost/assert.hpp +- +new +- + +src/3rdparty/include/boost/exception/enable_error_info.hpp +boost/exception/exception.hpp +- +boost/detail/workaround.hpp +- +boost/config.hpp +- +stddef.h +- + +src/3rdparty/include/boost/exception/exception.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- +boost/exception/detail/counted_base.hpp +- +boost/intrusive_ptr.hpp +- +typeinfo +- + +src/3rdparty/include/boost/function.hpp +functional +- +boost/preprocessor/iterate.hpp +- +boost/detail/workaround.hpp +- +boost/function/detail/prologue.hpp +- +boost/function/function0.hpp +- +boost/function/function1.hpp +- +boost/function/function2.hpp +- +boost/function/function3.hpp +- +boost/function/function4.hpp +- +boost/function/function5.hpp +- +boost/function/function6.hpp +- +boost/function/function7.hpp +- +boost/function/function8.hpp +- +boost/function/function9.hpp +- +boost/function/function10.hpp +- + +src/3rdparty/include/boost/function/detail/maybe_include.hpp +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- +boost/function/function_template.hpp +- + +src/3rdparty/include/boost/function/detail/prologue.hpp +cassert +- +algorithm +- +boost/config/no_tr1/functional.hpp +- +boost/throw_exception.hpp +- +boost/config.hpp +- +boost/function/function_base.hpp +- +boost/mem_fn.hpp +- +boost/type_traits/is_integral.hpp +- +boost/preprocessor/enum.hpp +- +boost/preprocessor/enum_params.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/repeat.hpp +- +boost/preprocessor/inc.hpp +- +boost/type_traits/is_void.hpp +- + +src/3rdparty/include/boost/function/function0.hpp +boost/function/detail/maybe_include.hpp +- + +src/3rdparty/include/boost/function/function1.hpp +boost/function/detail/maybe_include.hpp +- + +src/3rdparty/include/boost/function/function10.hpp +boost/function/detail/maybe_include.hpp +- + +src/3rdparty/include/boost/function/function2.hpp +boost/function/detail/maybe_include.hpp +- + +src/3rdparty/include/boost/function/function3.hpp +boost/function/detail/maybe_include.hpp +- + +src/3rdparty/include/boost/function/function4.hpp +boost/function/detail/maybe_include.hpp +- + +src/3rdparty/include/boost/function/function5.hpp +boost/function/detail/maybe_include.hpp +- + +src/3rdparty/include/boost/function/function6.hpp +boost/function/detail/maybe_include.hpp +- + +src/3rdparty/include/boost/function/function7.hpp +boost/function/detail/maybe_include.hpp +- + +src/3rdparty/include/boost/function/function8.hpp +boost/function/detail/maybe_include.hpp +- + +src/3rdparty/include/boost/function/function9.hpp +boost/function/detail/maybe_include.hpp +- + +src/3rdparty/include/boost/function/function_base.hpp +stdexcept +- +string +- +memory +- +new +- +typeinfo +- +boost/config.hpp +- +boost/assert.hpp +- +boost/type_traits/is_integral.hpp +- +boost/type_traits/composite_traits.hpp +- +boost/ref.hpp +- +boost/mpl/if.hpp +- +boost/detail/workaround.hpp +- +boost/type_traits/alignment_of.hpp +- +boost/utility/enable_if.hpp +src/3rdparty/include/boost/function/boost/utility/enable_if.hpp +boost/mpl/bool.hpp +src/3rdparty/include/boost/function/boost/mpl/bool.hpp +boost/function_equal.hpp +- +cstring +- + +src/3rdparty/include/boost/function/function_template.hpp +boost/function/detail/prologue.hpp +- + +src/3rdparty/include/boost/function_equal.hpp + +src/3rdparty/include/boost/get_pointer.hpp +memory +- + +src/3rdparty/include/boost/implicit_cast.hpp +boost/mpl/identity.hpp +- + +src/3rdparty/include/boost/integer_traits.hpp +boost/config.hpp +- +boost/limits.hpp +- +limits.h +- +wchar.h +- + +src/3rdparty/include/boost/intrusive_ptr.hpp +boost/config.hpp +- +boost/assert.hpp +- +boost/detail/workaround.hpp +- +boost/detail/sp_convertible.hpp +- +boost/config/no_tr1/functional.hpp +- +iosfwd +- +ostream +- + +src/3rdparty/include/boost/io/ios_state.hpp +boost/io_fwd.hpp +- +boost/detail/workaround.hpp +- +ios +- +locale +- +ostream +- +streambuf +- +string +- + +src/3rdparty/include/boost/io_fwd.hpp +iosfwd +- + +src/3rdparty/include/boost/is_placeholder.hpp + +src/3rdparty/include/boost/iterator.hpp +iterator +- +cstddef +- +boost/config.hpp +- + +src/3rdparty/include/boost/iterator/detail/config_def.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- +boost/type_traits/is_convertible.hpp +- + +src/3rdparty/include/boost/iterator/detail/config_undef.hpp + +src/3rdparty/include/boost/iterator/detail/enable_if.hpp +boost/detail/workaround.hpp +- +boost/mpl/identity.hpp +- +boost/iterator/detail/config_def.hpp +- +boost/iterator/detail/config_undef.hpp +- + +src/3rdparty/include/boost/iterator/detail/facade_iterator_category.hpp +boost/iterator/iterator_categories.hpp +- +boost/mpl/or.hpp +- +boost/mpl/and.hpp +- +boost/mpl/if.hpp +- +boost/mpl/eval_if.hpp +- +boost/mpl/identity.hpp +- +boost/mpl/assert.hpp +- +boost/type_traits/is_same.hpp +- +boost/type_traits/is_const.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/is_convertible.hpp +- +boost/type_traits/is_same.hpp +- +boost/iterator/detail/config_def.hpp +- +boost/detail/indirect_traits.hpp +- +boost/iterator/detail/config_undef.hpp +- + +src/3rdparty/include/boost/iterator/interoperable.hpp +boost/mpl/bool.hpp +- +boost/mpl/or.hpp +- +boost/type_traits/is_convertible.hpp +- +boost/iterator/detail/config_def.hpp +- +boost/iterator/detail/config_undef.hpp +- + +src/3rdparty/include/boost/iterator/iterator_adaptor.hpp +boost/static_assert.hpp +- +boost/iterator.hpp +- +boost/detail/iterator.hpp +- +boost/iterator/iterator_categories.hpp +- +boost/iterator/iterator_facade.hpp +- +boost/iterator/detail/enable_if.hpp +- +boost/mpl/and.hpp +- +boost/mpl/not.hpp +- +boost/mpl/or.hpp +- +boost/type_traits/is_same.hpp +- +boost/type_traits/is_convertible.hpp +- +boost/type_traits/remove_reference.hpp +- +boost/type_traits/add_reference.hpp +- +boost/iterator/detail/config_def.hpp +- +boost/iterator/iterator_traits.hpp +- +boost/iterator/detail/config_undef.hpp +- + +src/3rdparty/include/boost/iterator/iterator_categories.hpp +boost/config.hpp +- +boost/detail/iterator.hpp +- +boost/iterator/detail/config_def.hpp +- +boost/detail/workaround.hpp +- +boost/mpl/eval_if.hpp +- +boost/mpl/identity.hpp +- +boost/mpl/placeholders.hpp +- +boost/mpl/aux_/lambda_support.hpp +- +boost/type_traits/is_convertible.hpp +- +boost/static_assert.hpp +- +boost/iterator/detail/config_undef.hpp +- + +src/3rdparty/include/boost/iterator/iterator_facade.hpp +boost/iterator.hpp +- +boost/iterator/interoperable.hpp +- +boost/iterator/iterator_traits.hpp +- +boost/iterator/detail/facade_iterator_category.hpp +- +boost/iterator/detail/enable_if.hpp +- +boost/implicit_cast.hpp +- +boost/static_assert.hpp +- +boost/type_traits/is_same.hpp +- +boost/type_traits/add_const.hpp +- +boost/type_traits/add_pointer.hpp +- +boost/type_traits/remove_const.hpp +- +boost/type_traits/remove_reference.hpp +- +boost/type_traits/is_convertible.hpp +- +boost/type_traits/is_pod.hpp +- +boost/mpl/eval_if.hpp +- +boost/mpl/if.hpp +- +boost/mpl/or.hpp +- +boost/mpl/and.hpp +- +boost/mpl/not.hpp +- +boost/mpl/always.hpp +- +boost/mpl/apply.hpp +- +boost/mpl/identity.hpp +- +boost/iterator/detail/config_def.hpp +- +boost/iterator/detail/config_undef.hpp +- + +src/3rdparty/include/boost/iterator/iterator_traits.hpp +boost/detail/iterator.hpp +- +boost/detail/workaround.hpp +- + +src/3rdparty/include/boost/iterator/reverse_iterator.hpp +boost/iterator.hpp +- +boost/utility.hpp +- +boost/iterator/iterator_adaptor.hpp +- + +src/3rdparty/include/boost/iterator/transform_iterator.hpp +boost/function.hpp +- +boost/iterator.hpp +- +boost/iterator/detail/enable_if.hpp +- +boost/iterator/iterator_adaptor.hpp +- +boost/iterator/iterator_categories.hpp +- +boost/mpl/not.hpp +- +boost/mpl/bool.hpp +- +boost/type_traits/function_traits.hpp +- +boost/type_traits/is_const.hpp +- +boost/type_traits/is_class.hpp +- +boost/type_traits/is_function.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/remove_const.hpp +- +boost/type_traits/remove_reference.hpp +- +boost/type_traits/is_base_and_derived.hpp +- +boost/iterator/detail/config_def.hpp +- +boost/iterator/detail/config_undef.hpp +- + +src/3rdparty/include/boost/lexical_cast.hpp +climits +- +cstddef +- +istream +- +locale +- +string +- +typeinfo +- +boost/config.hpp +- +boost/limits.hpp +- +boost/mpl/if.hpp +- +boost/throw_exception.hpp +- +boost/type_traits/is_pointer.hpp +- +boost/call_traits.hpp +- +boost/static_assert.hpp +- +boost/detail/lcast_precision.hpp +- +strstream +- +sstream +- + +src/3rdparty/include/boost/limits.hpp +boost/config.hpp +- +boost/detail/limits.hpp +- +limits +- +climits +- + +src/3rdparty/include/boost/mem_fn.hpp +boost/config.hpp +- +boost/get_pointer.hpp +- +boost/detail/workaround.hpp +- +boost/bind/mem_fn_template.hpp +- +boost/bind/mem_fn_template.hpp +- +boost/bind/mem_fn_template.hpp +- +boost/bind/mem_fn_template.hpp +- +boost/bind/mem_fn_template.hpp +- +boost/bind/mem_fn_template.hpp +- +boost/bind/mem_fn_template.hpp +- +boost/bind/mem_fn_template.hpp +- +boost/bind/mem_fn_vw.hpp +- +boost/bind/mem_fn_vw.hpp +- +boost/bind/mem_fn_vw.hpp +- +boost/bind/mem_fn_vw.hpp +- +boost/bind/mem_fn_template.hpp +- +boost/bind/mem_fn_template.hpp +- +boost/bind/mem_fn_template.hpp +- +boost/bind/mem_fn_template.hpp +- +boost/bind/mem_fn_cc.hpp +- +boost/bind/mem_fn_cc.hpp +- +boost/bind/mem_fn_cc.hpp +- +boost/bind/mem_fn_cc.hpp +- + +src/3rdparty/include/boost/memory_order.hpp + +src/3rdparty/include/boost/mpl/always.hpp +boost/mpl/aux_/preprocessor/def_params_tail.hpp +- +boost/mpl/aux_/na.hpp +- +boost/mpl/aux_/arity_spec.hpp +- + +src/3rdparty/include/boost/mpl/and.hpp +boost/mpl/aux_/config/use_preprocessed.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/aux_/nested_type_wknd.hpp +- +boost/mpl/aux_/na_spec.hpp +- +boost/mpl/aux_/lambda_support.hpp +- +boost/mpl/aux_/include_preprocessed.hpp +- +boost/mpl/aux_/logical_op.hpp +- + +src/3rdparty/include/boost/mpl/apply.hpp +boost/mpl/apply_fwd.hpp +- +boost/mpl/apply_wrap.hpp +- +boost/mpl/placeholders.hpp +- +boost/mpl/lambda.hpp +- +boost/mpl/aux_/na.hpp +- +boost/mpl/aux_/lambda_support.hpp +- +boost/mpl/aux_/config/use_preprocessed.hpp +- +boost/mpl/aux_/include_preprocessed.hpp +- +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/preprocessor/default_params.hpp +- +boost/mpl/aux_/preprocessor/partial_spec_params.hpp +- +boost/mpl/aux_/preprocessor/enum.hpp +- +boost/mpl/aux_/config/lambda.hpp +- +boost/mpl/aux_/config/dtp.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- +boost/mpl/aux_/config/eti.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/inc.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/cat.hpp +- +boost/mpl/aux_/count_args.hpp +- + +src/3rdparty/include/boost/mpl/apply_fwd.hpp +boost/mpl/aux_/na.hpp +- +boost/mpl/aux_/config/use_preprocessed.hpp +- +boost/mpl/aux_/include_preprocessed.hpp +- +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/preprocessor/default_params.hpp +- +boost/mpl/aux_/config/ctps.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/apply_wrap.hpp +boost/mpl/aux_/arity.hpp +- +boost/mpl/aux_/has_apply.hpp +- +boost/mpl/aux_/na.hpp +- +boost/mpl/aux_/msvc_never_true.hpp +- +boost/mpl/aux_/config/use_preprocessed.hpp +- +boost/mpl/aux_/include_preprocessed.hpp +- +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/preprocessor/enum.hpp +- +boost/mpl/aux_/preprocessor/add.hpp +- +boost/mpl/aux_/config/dtp.hpp +- +boost/mpl/aux_/config/eti.hpp +- +boost/mpl/aux_/config/ctps.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/logical/and.hpp +- +boost/preprocessor/inc.hpp +- +boost/preprocessor/iterate.hpp +- +boost/mpl/aux_/msvc_dtw.hpp +- + +src/3rdparty/include/boost/mpl/arg.hpp +boost/mpl/arg_fwd.hpp +- +boost/mpl/aux_/na.hpp +- +boost/mpl/aux_/na_assert.hpp +- +boost/mpl/aux_/arity_spec.hpp +- +boost/mpl/aux_/arg_typedef.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- +boost/mpl/aux_/config/use_preprocessed.hpp +- +boost/mpl/aux_/include_preprocessed.hpp +- +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/preprocessor/default_params.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/config/lambda.hpp +- +boost/mpl/aux_/config/dtp.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/inc.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/arg_fwd.hpp +boost/mpl/aux_/adl_barrier.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- + +src/3rdparty/include/boost/mpl/assert.hpp +boost/mpl/not.hpp +- +boost/mpl/aux_/value_wknd.hpp +- +boost/mpl/aux_/nested_type_wknd.hpp +- +boost/mpl/aux_/yes_no.hpp +- +boost/mpl/aux_/na.hpp +- +boost/mpl/aux_/adl_barrier.hpp +- +boost/mpl/aux_/config/nttp.hpp +- +boost/mpl/aux_/config/dtp.hpp +- +boost/mpl/aux_/config/gcc.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- +boost/mpl/aux_/config/pp_counter.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/preprocessor/cat.hpp +- +boost/config.hpp +- +cstddef +- + +src/3rdparty/include/boost/mpl/aux_/adl_barrier.hpp +boost/mpl/aux_/config/adl.hpp +- +boost/mpl/aux_/config/gcc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/arg_typedef.hpp +boost/mpl/aux_/config/lambda.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/arity.hpp +boost/mpl/aux_/config/dtp.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- + +src/3rdparty/include/boost/mpl/aux_/arity_spec.hpp +boost/mpl/int.hpp +- +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/config/dtp.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/arity.hpp +- +boost/mpl/aux_/template_arity_fwd.hpp +- +boost/mpl/aux_/config/ttp.hpp +- +boost/mpl/aux_/config/lambda.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- + +src/3rdparty/include/boost/mpl/aux_/common_name_wknd.hpp +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/adl.hpp +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/intel.hpp +- +boost/mpl/aux_/config/gcc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/arrays.hpp +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/bind.hpp +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/compiler.hpp +boost/mpl/aux_/config/dtp.hpp +- +boost/mpl/aux_/config/ttp.hpp +- +boost/mpl/aux_/config/ctps.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/gcc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/ctps.hpp +boost/mpl/aux_/config/workaround.hpp +- +boost/config.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/dtp.hpp +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/eti.hpp +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/gcc.hpp + +src/3rdparty/include/boost/mpl/aux_/config/has_apply.hpp +boost/mpl/aux_/config/has_xxx.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/has_xxx.hpp +boost/mpl/aux_/config/overload_resolution.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/integral.hpp +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/intel.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/lambda.hpp +boost/mpl/aux_/config/ttp.hpp +- +boost/mpl/aux_/config/ctps.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/msvc.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/msvc_typename.hpp +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/nttp.hpp +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/overload_resolution.hpp +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/pp_counter.hpp +boost/mpl/aux_/config/msvc.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/preprocessor.hpp +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/static_constant.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/ttp.hpp +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/gcc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/config/use_preprocessed.hpp + +src/3rdparty/include/boost/mpl/aux_/config/workaround.hpp +boost/detail/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/count_args.hpp +boost/preprocessor/expr_if.hpp +- +boost/preprocessor/inc.hpp +- +boost/preprocessor/cat.hpp +- +boost/mpl/aux_/preprocessor/repeat.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/preprocessor/enum_shifted_params.hpp +- +boost/preprocessor/repeat.hpp +- +boost/preprocessor/inc.hpp +- + +src/3rdparty/include/boost/mpl/aux_/full_lambda.hpp +boost/mpl/lambda_fwd.hpp +- +boost/mpl/bind_fwd.hpp +- +boost/mpl/protect.hpp +- +boost/mpl/quote.hpp +- +boost/mpl/arg.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/int_fwd.hpp +- +boost/mpl/aux_/template_arity.hpp +- +boost/mpl/aux_/na_spec.hpp +- +boost/mpl/aux_/config/ttp.hpp +- +boost/mpl/if.hpp +- +boost/mpl/aux_/lambda_arity_param.hpp +- +boost/mpl/aux_/config/use_preprocessed.hpp +- +boost/mpl/aux_/include_preprocessed.hpp +- +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/preprocessor/default_params.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/preprocessor/enum.hpp +- +boost/mpl/aux_/preprocessor/repeat.hpp +- +boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/inc.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/aux_/has_apply.hpp +boost/mpl/has_xxx.hpp +- +boost/mpl/aux_/config/has_apply.hpp +- + +src/3rdparty/include/boost/mpl/aux_/has_rebind.hpp +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/intel.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/mpl/has_xxx.hpp +- +boost/mpl/has_xxx.hpp +- +boost/mpl/if.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/aux_/msvc_is_class.hpp +- +boost/mpl/if.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/aux_/yes_no.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- +boost/type_traits/is_class.hpp +- +boost/mpl/aux_/type_wrapper.hpp +- +boost/mpl/aux_/yes_no.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- + +src/3rdparty/include/boost/mpl/aux_/has_type.hpp +boost/mpl/has_xxx.hpp +- + +src/3rdparty/include/boost/mpl/aux_/include_preprocessed.hpp +boost/mpl/aux_/config/compiler.hpp +- +boost/mpl/aux_/config/preprocessor.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/stringize.hpp +- + +src/3rdparty/include/boost/mpl/aux_/integral_wrapper.hpp +boost/mpl/integral_c_tag.hpp +- +boost/mpl/aux_/static_cast.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/aux_/lambda_arity_param.hpp +boost/mpl/aux_/config/ttp.hpp +- + +src/3rdparty/include/boost/mpl/aux_/lambda_no_ctps.hpp +boost/mpl/lambda_fwd.hpp +- +boost/mpl/bind_fwd.hpp +- +boost/mpl/protect.hpp +- +boost/mpl/is_placeholder.hpp +- +boost/mpl/if.hpp +- +boost/mpl/identity.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/aux_/na_spec.hpp +- +boost/mpl/aux_/lambda_support.hpp +- +boost/mpl/aux_/template_arity.hpp +- +boost/mpl/aux_/value_wknd.hpp +- +boost/mpl/aux_/config/use_preprocessed.hpp +- +boost/mpl/aux_/include_preprocessed.hpp +- +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/preprocessor/default_params.hpp +- +boost/mpl/aux_/preprocessor/repeat.hpp +- +boost/mpl/aux_/preprocessor/enum.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/inc.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/aux_/lambda_support.hpp +boost/mpl/aux_/config/lambda.hpp +- +boost/mpl/int_fwd.hpp +- +boost/mpl/aux_/yes_no.hpp +- +boost/mpl/aux_/na_fwd.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/preprocessor/enum.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/preprocessor/tuple/to_list.hpp +- +boost/preprocessor/list/for_each_i.hpp +- +boost/preprocessor/inc.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/aux_/logical_op.hpp +boost/mpl/bool.hpp +- +boost/mpl/aux_/nested_type_wknd.hpp +- +boost/mpl/aux_/na_spec.hpp +- +boost/mpl/aux_/lambda_support.hpp +- +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/preprocessor/ext_params.hpp +- +boost/mpl/aux_/preprocessor/def_params_tail.hpp +- +boost/mpl/aux_/preprocessor/enum.hpp +- +boost/mpl/aux_/preprocessor/sub.hpp +- +boost/mpl/aux_/config/ctps.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/preprocessor/dec.hpp +- +boost/preprocessor/inc.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/aux_/msvc_dtw.hpp +boost/mpl/aux_/preprocessor/params.hpp +- + +src/3rdparty/include/boost/mpl/aux_/msvc_is_class.hpp +boost/mpl/if.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/aux_/type_wrapper.hpp +- +boost/mpl/aux_/yes_no.hpp +- +boost/type_traits/is_reference.hpp +- + +src/3rdparty/include/boost/mpl/aux_/msvc_never_true.hpp +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/na.hpp +boost/mpl/bool.hpp +- +boost/mpl/aux_/na_fwd.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/ctps.hpp +- + +src/3rdparty/include/boost/mpl/aux_/na_assert.hpp +boost/mpl/aux_/na.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/mpl/assert.hpp +- +boost/static_assert.hpp +- + +src/3rdparty/include/boost/mpl/aux_/na_fwd.hpp +boost/mpl/aux_/adl_barrier.hpp +- + +src/3rdparty/include/boost/mpl/aux_/na_spec.hpp +boost/mpl/lambda_fwd.hpp +- +boost/mpl/int.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/aux_/na.hpp +- +boost/mpl/aux_/arity.hpp +- +boost/mpl/aux_/template_arity_fwd.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/preprocessor/enum.hpp +- +boost/mpl/aux_/preprocessor/def_params_tail.hpp +- +boost/mpl/aux_/lambda_arity_param.hpp +- +boost/mpl/aux_/config/dtp.hpp +- +boost/mpl/aux_/config/eti.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- +boost/mpl/aux_/config/ttp.hpp +- +boost/mpl/aux_/config/lambda.hpp +- +boost/mpl/aux_/config/overload_resolution.hpp +- + +src/3rdparty/include/boost/mpl/aux_/nested_type_wknd.hpp +boost/mpl/aux_/config/gcc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/nttp_decl.hpp +boost/mpl/aux_/config/nttp.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/aux_/preprocessor/add.hpp +boost/mpl/aux_/config/preprocessor.hpp +- +boost/mpl/aux_/preprocessor/tuple.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/arithmetic/add.hpp +- + +src/3rdparty/include/boost/mpl/aux_/preprocessor/def_params_tail.hpp +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/config/dtp.hpp +- +boost/mpl/aux_/config/preprocessor.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/logical/and.hpp +- +boost/preprocessor/identity.hpp +- +boost/preprocessor/empty.hpp +- +boost/mpl/aux_/preprocessor/filter_params.hpp +- +boost/mpl/aux_/preprocessor/sub.hpp +- +boost/preprocessor/arithmetic/add.hpp +- +boost/preprocessor/arithmetic/sub.hpp +- +boost/preprocessor/inc.hpp +- +boost/preprocessor/tuple/elem.hpp +- +boost/preprocessor/repeat.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/aux_/preprocessor/default_params.hpp +boost/mpl/aux_/config/preprocessor.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/tuple/elem.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/repeat.hpp +- +boost/preprocessor/inc.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/aux_/preprocessor/enum.hpp +boost/mpl/aux_/config/preprocessor.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/repeat.hpp +- + +src/3rdparty/include/boost/mpl/aux_/preprocessor/ext_params.hpp +boost/mpl/aux_/config/preprocessor.hpp +- +boost/mpl/aux_/preprocessor/filter_params.hpp +- +boost/mpl/aux_/preprocessor/sub.hpp +- +boost/preprocessor/arithmetic/add.hpp +- +boost/preprocessor/arithmetic/sub.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/repeat.hpp +- +boost/preprocessor/tuple/elem.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/aux_/preprocessor/filter_params.hpp + +src/3rdparty/include/boost/mpl/aux_/preprocessor/params.hpp +boost/mpl/aux_/config/preprocessor.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/repeat.hpp +- +boost/preprocessor/inc.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/aux_/preprocessor/partial_spec_params.hpp +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/preprocessor/enum.hpp +- +boost/mpl/aux_/preprocessor/sub.hpp +- +boost/preprocessor/comma_if.hpp +- + +src/3rdparty/include/boost/mpl/aux_/preprocessor/range.hpp +boost/preprocessor/seq/subseq.hpp +- + +src/3rdparty/include/boost/mpl/aux_/preprocessor/repeat.hpp +boost/mpl/aux_/config/preprocessor.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/repeat.hpp +- + +src/3rdparty/include/boost/mpl/aux_/preprocessor/sub.hpp +boost/mpl/aux_/config/preprocessor.hpp +- +boost/mpl/aux_/preprocessor/tuple.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/arithmetic/sub.hpp +- + +src/3rdparty/include/boost/mpl/aux_/preprocessor/tuple.hpp + +src/3rdparty/include/boost/mpl/aux_/static_cast.hpp +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/aux_/template_arity.hpp +boost/mpl/aux_/config/ttp.hpp +- +boost/mpl/aux_/config/lambda.hpp +- +boost/mpl/aux_/template_arity_fwd.hpp +- +boost/mpl/int.hpp +- +boost/mpl/aux_/type_wrapper.hpp +- +boost/mpl/aux_/has_rebind.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- +boost/mpl/aux_/config/use_preprocessed.hpp +- +boost/mpl/aux_/include_preprocessed.hpp +- +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/preprocessor/range.hpp +- +boost/mpl/aux_/preprocessor/repeat.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- +boost/preprocessor/seq/fold_left.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/inc.hpp +- +boost/preprocessor/cat.hpp +- +boost/mpl/aux_/config/eti.hpp +- + +src/3rdparty/include/boost/mpl/aux_/template_arity_fwd.hpp + +src/3rdparty/include/boost/mpl/aux_/type_wrapper.hpp +boost/mpl/aux_/config/ctps.hpp +- + +src/3rdparty/include/boost/mpl/aux_/value_wknd.hpp +boost/mpl/aux_/static_cast.hpp +- +boost/mpl/aux_/config/integral.hpp +- +boost/mpl/aux_/config/eti.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/mpl/int.hpp +- + +src/3rdparty/include/boost/mpl/aux_/yes_no.hpp +boost/mpl/aux_/nttp_decl.hpp +- +boost/mpl/aux_/config/arrays.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/bind.hpp +boost/mpl/bind_fwd.hpp +- +boost/mpl/placeholders.hpp +- +boost/mpl/next.hpp +- +boost/mpl/protect.hpp +- +boost/mpl/apply_wrap.hpp +- +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/na.hpp +- +boost/mpl/aux_/arity_spec.hpp +- +boost/mpl/aux_/type_wrapper.hpp +- +boost/mpl/aux_/yes_no.hpp +- +boost/type_traits/is_reference.hpp +- +boost/mpl/aux_/config/bind.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- +boost/mpl/aux_/config/use_preprocessed.hpp +- +boost/mpl/aux_/include_preprocessed.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/preprocessor/default_params.hpp +- +boost/mpl/aux_/preprocessor/def_params_tail.hpp +- +boost/mpl/aux_/preprocessor/partial_spec_params.hpp +- +boost/mpl/aux_/preprocessor/ext_params.hpp +- +boost/mpl/aux_/preprocessor/repeat.hpp +- +boost/mpl/aux_/preprocessor/enum.hpp +- +boost/mpl/aux_/preprocessor/add.hpp +- +boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp +- +boost/mpl/aux_/config/ctps.hpp +- +boost/mpl/aux_/config/ttp.hpp +- +boost/mpl/aux_/config/dtp.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/inc.hpp +- +boost/mpl/aux_/count_args.hpp +- + +src/3rdparty/include/boost/mpl/bind_fwd.hpp +boost/mpl/aux_/na.hpp +- +boost/mpl/aux_/config/bind.hpp +- +boost/mpl/aux_/config/use_preprocessed.hpp +- +boost/mpl/aux_/include_preprocessed.hpp +- +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/preprocessor/default_params.hpp +- +boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp +- +boost/preprocessor/comma_if.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/bool.hpp +boost/mpl/bool_fwd.hpp +- +boost/mpl/integral_c_tag.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- + +src/3rdparty/include/boost/mpl/bool_fwd.hpp +boost/mpl/aux_/adl_barrier.hpp +- + +src/3rdparty/include/boost/mpl/eval_if.hpp +boost/mpl/if.hpp +- +boost/mpl/aux_/na_spec.hpp +- +boost/mpl/aux_/lambda_support.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/gcc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/has_xxx.hpp +boost/mpl/bool.hpp +- +boost/mpl/aux_/type_wrapper.hpp +- +boost/mpl/aux_/yes_no.hpp +- +boost/mpl/aux_/config/has_xxx.hpp +- +boost/mpl/aux_/config/msvc_typename.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/preprocessor/cat.hpp +- +boost/type_traits/is_class.hpp +- +boost/mpl/if.hpp +- +boost/mpl/bool.hpp +- + +src/3rdparty/include/boost/mpl/identity.hpp +boost/mpl/aux_/na_spec.hpp +- +boost/mpl/aux_/lambda_support.hpp +- + +src/3rdparty/include/boost/mpl/if.hpp +boost/mpl/aux_/value_wknd.hpp +- +boost/mpl/aux_/static_cast.hpp +- +boost/mpl/aux_/na_spec.hpp +- +boost/mpl/aux_/lambda_support.hpp +- +boost/mpl/aux_/config/integral.hpp +- +boost/mpl/aux_/config/ctps.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/int.hpp +boost/mpl/int_fwd.hpp +- +boost/mpl/aux_/integral_wrapper.hpp +- + +src/3rdparty/include/boost/mpl/int_fwd.hpp +boost/mpl/aux_/adl_barrier.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- + +src/3rdparty/include/boost/mpl/integral_c.hpp +boost/mpl/integral_c_fwd.hpp +- +boost/mpl/aux_/config/ctps.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/mpl/aux_/integral_wrapper.hpp +- + +src/3rdparty/include/boost/mpl/integral_c_fwd.hpp +boost/mpl/aux_/config/workaround.hpp +- +boost/mpl/aux_/adl_barrier.hpp +- + +src/3rdparty/include/boost/mpl/integral_c_tag.hpp +boost/mpl/aux_/adl_barrier.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- + +src/3rdparty/include/boost/mpl/is_placeholder.hpp +boost/mpl/arg_fwd.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/aux_/yes_no.hpp +- +boost/mpl/aux_/type_wrapper.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- +boost/mpl/aux_/config/ctps.hpp +- +boost/mpl/aux_/config/static_constant.hpp +- + +src/3rdparty/include/boost/mpl/lambda.hpp +boost/mpl/lambda_fwd.hpp +- +boost/mpl/bind.hpp +- +boost/mpl/aux_/config/lambda.hpp +- +boost/mpl/aux_/full_lambda.hpp +- +boost/mpl/aux_/lambda_no_ctps.hpp +- +boost/mpl/aux_/lambda_support.hpp +- + +src/3rdparty/include/boost/mpl/lambda_fwd.hpp +boost/mpl/void_fwd.hpp +- +boost/mpl/aux_/na.hpp +- +boost/mpl/aux_/config/lambda.hpp +- +boost/mpl/int.hpp +- +boost/mpl/aux_/lambda_arity_param.hpp +- +boost/mpl/aux_/template_arity_fwd.hpp +- +boost/mpl/bool.hpp +- + +src/3rdparty/include/boost/mpl/limits/arity.hpp + +src/3rdparty/include/boost/mpl/logical.hpp +boost/mpl/or.hpp +- +boost/mpl/and.hpp +- +boost/mpl/not.hpp +- + +src/3rdparty/include/boost/mpl/next.hpp +boost/mpl/next_prior.hpp +- + +src/3rdparty/include/boost/mpl/next_prior.hpp +boost/mpl/aux_/common_name_wknd.hpp +- +boost/mpl/aux_/na_spec.hpp +- +boost/mpl/aux_/lambda_support.hpp +- + +src/3rdparty/include/boost/mpl/not.hpp +boost/mpl/bool.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- +boost/mpl/aux_/nested_type_wknd.hpp +- +boost/mpl/aux_/na_spec.hpp +- +boost/mpl/aux_/lambda_support.hpp +- + +src/3rdparty/include/boost/mpl/or.hpp +boost/mpl/aux_/config/use_preprocessed.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/aux_/nested_type_wknd.hpp +- +boost/mpl/aux_/na_spec.hpp +- +boost/mpl/aux_/lambda_support.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/include_preprocessed.hpp +- +boost/mpl/aux_/logical_op.hpp +- + +src/3rdparty/include/boost/mpl/placeholders.hpp +boost/mpl/arg.hpp +- +boost/mpl/aux_/adl_barrier.hpp +- +boost/mpl/aux_/config/use_preprocessed.hpp +- +boost/mpl/aux_/include_preprocessed.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- +boost/mpl/limits/arity.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/protect.hpp +boost/mpl/aux_/arity.hpp +- +boost/mpl/aux_/config/dtp.hpp +- +boost/mpl/aux_/nttp_decl.hpp +- +boost/mpl/aux_/na_spec.hpp +- + +src/3rdparty/include/boost/mpl/quote.hpp +boost/mpl/void.hpp +- +boost/mpl/aux_/has_type.hpp +- +boost/mpl/aux_/config/ttp.hpp +- +boost/mpl/aux_/config/use_preprocessed.hpp +- +boost/mpl/aux_/include_preprocessed.hpp +- +boost/mpl/limits/arity.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/config/ctps.hpp +- +boost/mpl/aux_/config/workaround.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/cat.hpp +- + +src/3rdparty/include/boost/mpl/size_t.hpp +boost/mpl/size_t_fwd.hpp +- +boost/mpl/aux_/integral_wrapper.hpp +- + +src/3rdparty/include/boost/mpl/size_t_fwd.hpp +boost/mpl/aux_/adl_barrier.hpp +- +boost/config.hpp +- +cstddef +- + +src/3rdparty/include/boost/mpl/void.hpp +boost/mpl/void_fwd.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/aux_/na_spec.hpp +- +boost/mpl/aux_/config/msvc.hpp +- +boost/mpl/aux_/config/workaround.hpp +- + +src/3rdparty/include/boost/mpl/void_fwd.hpp +boost/mpl/aux_/adl_barrier.hpp +- + +src/3rdparty/include/boost/next_prior.hpp +iterator +- + +src/3rdparty/include/boost/non_type.hpp + +src/3rdparty/include/boost/noncopyable.hpp + +src/3rdparty/include/boost/none.hpp +boost/none_t.hpp +src/3rdparty/include/boost/boost/none_t.hpp + +src/3rdparty/include/boost/none_t.hpp + +src/3rdparty/include/boost/operators.hpp +boost/config.hpp +- +boost/iterator.hpp +- +boost/detail/workaround.hpp +- + +src/3rdparty/include/boost/optional.hpp +boost/optional/optional.hpp +src/3rdparty/include/boost/boost/optional/optional.hpp + +src/3rdparty/include/boost/optional/optional.hpp +new +- +algorithm +- +boost/config.hpp +src/3rdparty/include/boost/optional/boost/config.hpp +boost/assert.hpp +src/3rdparty/include/boost/optional/boost/assert.hpp +boost/type.hpp +src/3rdparty/include/boost/optional/boost/type.hpp +boost/type_traits/alignment_of.hpp +src/3rdparty/include/boost/optional/boost/type_traits/alignment_of.hpp +boost/type_traits/type_with_alignment.hpp +src/3rdparty/include/boost/optional/boost/type_traits/type_with_alignment.hpp +boost/type_traits/remove_reference.hpp +src/3rdparty/include/boost/optional/boost/type_traits/remove_reference.hpp +boost/type_traits/is_reference.hpp +src/3rdparty/include/boost/optional/boost/type_traits/is_reference.hpp +boost/mpl/if.hpp +src/3rdparty/include/boost/optional/boost/mpl/if.hpp +boost/mpl/bool.hpp +src/3rdparty/include/boost/optional/boost/mpl/bool.hpp +boost/mpl/not.hpp +src/3rdparty/include/boost/optional/boost/mpl/not.hpp +boost/detail/reference_content.hpp +src/3rdparty/include/boost/optional/boost/detail/reference_content.hpp +boost/none.hpp +src/3rdparty/include/boost/optional/boost/none.hpp +boost/utility/compare_pointees.hpp +src/3rdparty/include/boost/optional/boost/utility/compare_pointees.hpp +boost/optional/optional_fwd.hpp +src/3rdparty/include/boost/optional/boost/optional/optional_fwd.hpp + +src/3rdparty/include/boost/optional/optional_fwd.hpp + +src/3rdparty/include/boost/preprocessor/arithmetic/add.hpp +boost/preprocessor/arithmetic/dec.hpp +- +boost/preprocessor/arithmetic/inc.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/control/while.hpp +- +boost/preprocessor/tuple/elem.hpp +- + +src/3rdparty/include/boost/preprocessor/arithmetic/dec.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/arithmetic/inc.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/arithmetic/sub.hpp +boost/preprocessor/arithmetic/dec.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/control/while.hpp +- +boost/preprocessor/tuple/elem.hpp +- + +src/3rdparty/include/boost/preprocessor/array/data.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/tuple/elem.hpp +- + +src/3rdparty/include/boost/preprocessor/array/elem.hpp +boost/preprocessor/array/data.hpp +- +boost/preprocessor/array/size.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/tuple/elem.hpp +- + +src/3rdparty/include/boost/preprocessor/array/size.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/tuple/elem.hpp +- + +src/3rdparty/include/boost/preprocessor/cat.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/comma_if.hpp +boost/preprocessor/punctuation/comma_if.hpp +- + +src/3rdparty/include/boost/preprocessor/config/config.hpp + +src/3rdparty/include/boost/preprocessor/control/detail/dmc/while.hpp +boost/preprocessor/control/iif.hpp +- +boost/preprocessor/logical/bool.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/control/detail/edg/while.hpp +boost/preprocessor/control/if.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/control/detail/msvc/while.hpp +boost/preprocessor/control/if.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/control/detail/while.hpp +boost/preprocessor/control/iif.hpp +- +boost/preprocessor/logical/bool.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/control/expr_if.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/control/expr_iif.hpp +- +boost/preprocessor/logical/bool.hpp +- + +src/3rdparty/include/boost/preprocessor/control/expr_iif.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/control/if.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/control/iif.hpp +- +boost/preprocessor/logical/bool.hpp +- + +src/3rdparty/include/boost/preprocessor/control/iif.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/control/while.hpp +boost/preprocessor/cat.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/debug/error.hpp +- +boost/preprocessor/detail/auto_rec.hpp +- +boost/preprocessor/list/fold_left.hpp +- +boost/preprocessor/list/fold_right.hpp +- +boost/preprocessor/logical/bitand.hpp +- +boost/preprocessor/control/detail/edg/while.hpp +- +boost/preprocessor/control/detail/msvc/while.hpp +- +boost/preprocessor/control/detail/dmc/while.hpp +- +boost/preprocessor/control/detail/while.hpp +- + +src/3rdparty/include/boost/preprocessor/debug/error.hpp +boost/preprocessor/cat.hpp +- +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/dec.hpp +boost/preprocessor/arithmetic/dec.hpp +- + +src/3rdparty/include/boost/preprocessor/detail/auto_rec.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/detail/dmc/auto_rec.hpp +- +boost/preprocessor/control/iif.hpp +- + +src/3rdparty/include/boost/preprocessor/detail/check.hpp +boost/preprocessor/cat.hpp +- +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/detail/dmc/auto_rec.hpp +boost/preprocessor/control/iif.hpp +- + +src/3rdparty/include/boost/preprocessor/detail/is_binary.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/detail/check.hpp +- + +src/3rdparty/include/boost/preprocessor/empty.hpp +boost/preprocessor/facilities/empty.hpp +- + +src/3rdparty/include/boost/preprocessor/enum.hpp +boost/preprocessor/repetition/enum.hpp +- + +src/3rdparty/include/boost/preprocessor/enum_params.hpp +boost/preprocessor/repetition/enum_params.hpp +- + +src/3rdparty/include/boost/preprocessor/enum_shifted_params.hpp +boost/preprocessor/repetition/enum_shifted_params.hpp +- + +src/3rdparty/include/boost/preprocessor/expr_if.hpp +boost/preprocessor/control/expr_if.hpp +- + +src/3rdparty/include/boost/preprocessor/facilities/empty.hpp + +src/3rdparty/include/boost/preprocessor/facilities/identity.hpp +boost/preprocessor/facilities/empty.hpp +- + +src/3rdparty/include/boost/preprocessor/identity.hpp +boost/preprocessor/facilities/identity.hpp +- + +src/3rdparty/include/boost/preprocessor/inc.hpp +boost/preprocessor/arithmetic/inc.hpp +- + +src/3rdparty/include/boost/preprocessor/iterate.hpp +boost/preprocessor/iteration/iterate.hpp +- + +src/3rdparty/include/boost/preprocessor/iteration/iterate.hpp +boost/preprocessor/arithmetic/dec.hpp +- +boost/preprocessor/arithmetic/inc.hpp +- +boost/preprocessor/array/elem.hpp +- +boost/preprocessor/array/size.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/slot/slot.hpp +- +boost/preprocessor/tuple/elem.hpp +- + +src/3rdparty/include/boost/preprocessor/list/adt.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/detail/is_binary.hpp +- +boost/preprocessor/logical/compl.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/list/append.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/list/fold_right.hpp +- + +src/3rdparty/include/boost/preprocessor/list/detail/dmc/fold_left.hpp +boost/preprocessor/control/expr_iif.hpp +- +boost/preprocessor/control/iif.hpp +- +boost/preprocessor/list/adt.hpp +- +boost/preprocessor/tuple/elem.hpp +- + +src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_left.hpp +boost/preprocessor/control/expr_iif.hpp +- +boost/preprocessor/control/iif.hpp +- +boost/preprocessor/list/adt.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_right.hpp +boost/preprocessor/control/iif.hpp +- +boost/preprocessor/list/adt.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/list/detail/fold_left.hpp +boost/preprocessor/control/expr_iif.hpp +- +boost/preprocessor/control/iif.hpp +- +boost/preprocessor/list/adt.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/list/detail/fold_right.hpp +boost/preprocessor/list/fold_left.hpp +- +boost/preprocessor/list/reverse.hpp +- + +src/3rdparty/include/boost/preprocessor/list/fold_left.hpp +boost/preprocessor/cat.hpp +- +boost/preprocessor/control/while.hpp +- +boost/preprocessor/debug/error.hpp +- +boost/preprocessor/detail/auto_rec.hpp +- +boost/preprocessor/list/detail/edg/fold_left.hpp +- +boost/preprocessor/list/detail/dmc/fold_left.hpp +- +boost/preprocessor/list/detail/fold_left.hpp +- + +src/3rdparty/include/boost/preprocessor/list/fold_right.hpp +boost/preprocessor/cat.hpp +- +boost/preprocessor/control/while.hpp +- +boost/preprocessor/debug/error.hpp +- +boost/preprocessor/detail/auto_rec.hpp +- +boost/preprocessor/list/detail/edg/fold_right.hpp +- +boost/preprocessor/list/detail/fold_right.hpp +- + +src/3rdparty/include/boost/preprocessor/list/for_each_i.hpp +boost/preprocessor/arithmetic/inc.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/list/adt.hpp +- +boost/preprocessor/repetition/for.hpp +- +boost/preprocessor/tuple/elem.hpp +- +boost/preprocessor/tuple/rem.hpp +- + +src/3rdparty/include/boost/preprocessor/list/reverse.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/list/fold_left.hpp +- + +src/3rdparty/include/boost/preprocessor/list/transform.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/list/fold_right.hpp +- +boost/preprocessor/tuple/elem.hpp +- +boost/preprocessor/tuple/rem.hpp +- + +src/3rdparty/include/boost/preprocessor/logical/and.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/logical/bool.hpp +- +boost/preprocessor/logical/bitand.hpp +- + +src/3rdparty/include/boost/preprocessor/logical/bitand.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/logical/bool.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/logical/compl.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/punctuation/comma.hpp + +src/3rdparty/include/boost/preprocessor/punctuation/comma_if.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/control/if.hpp +- +boost/preprocessor/facilities/empty.hpp +- +boost/preprocessor/punctuation/comma.hpp +- + +src/3rdparty/include/boost/preprocessor/repeat.hpp +boost/preprocessor/repetition/repeat.hpp +- + +src/3rdparty/include/boost/preprocessor/repetition/detail/dmc/for.hpp +boost/preprocessor/control/expr_iif.hpp +- +boost/preprocessor/control/iif.hpp +- +boost/preprocessor/logical/bool.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/repetition/detail/edg/for.hpp +boost/preprocessor/control/if.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/repetition/detail/for.hpp +boost/preprocessor/control/expr_iif.hpp +- +boost/preprocessor/control/iif.hpp +- +boost/preprocessor/logical/bool.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/repetition/detail/msvc/for.hpp +boost/preprocessor/control/if.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/repetition/enum.hpp +boost/preprocessor/cat.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/debug/error.hpp +- +boost/preprocessor/detail/auto_rec.hpp +- +boost/preprocessor/punctuation/comma_if.hpp +- +boost/preprocessor/repetition/repeat.hpp +- +boost/preprocessor/tuple/elem.hpp +- +boost/preprocessor/tuple/rem.hpp +- + +src/3rdparty/include/boost/preprocessor/repetition/enum_binary_params.hpp +boost/preprocessor/cat.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/punctuation/comma_if.hpp +- +boost/preprocessor/repetition/repeat.hpp +- +boost/preprocessor/tuple/elem.hpp +- +boost/preprocessor/tuple/rem.hpp +- + +src/3rdparty/include/boost/preprocessor/repetition/enum_params.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/punctuation/comma_if.hpp +- +boost/preprocessor/repetition/repeat.hpp +- + +src/3rdparty/include/boost/preprocessor/repetition/enum_shifted_params.hpp +boost/preprocessor/arithmetic/dec.hpp +- +boost/preprocessor/arithmetic/inc.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/punctuation/comma_if.hpp +- +boost/preprocessor/repetition/repeat.hpp +- + +src/3rdparty/include/boost/preprocessor/repetition/for.hpp +boost/preprocessor/cat.hpp +- +boost/preprocessor/debug/error.hpp +- +boost/preprocessor/detail/auto_rec.hpp +- +boost/preprocessor/repetition/detail/edg/for.hpp +- +boost/preprocessor/repetition/detail/msvc/for.hpp +- +boost/preprocessor/repetition/detail/dmc/for.hpp +- +boost/preprocessor/repetition/detail/for.hpp +- + +src/3rdparty/include/boost/preprocessor/repetition/repeat.hpp +boost/preprocessor/cat.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/debug/error.hpp +- +boost/preprocessor/detail/auto_rec.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/repetition/repeat_from_to.hpp +boost/preprocessor/arithmetic/add.hpp +- +boost/preprocessor/arithmetic/sub.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/control/while.hpp +- +boost/preprocessor/debug/error.hpp +- +boost/preprocessor/detail/auto_rec.hpp +- +boost/preprocessor/repetition/repeat.hpp +- +boost/preprocessor/tuple/elem.hpp +- +boost/preprocessor/tuple/rem.hpp +- + +src/3rdparty/include/boost/preprocessor/seq/detail/split.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/seq/elem.hpp +boost/preprocessor/cat.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/facilities/empty.hpp +- + +src/3rdparty/include/boost/preprocessor/seq/enum.hpp +boost/preprocessor/cat.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/seq/size.hpp +- + +src/3rdparty/include/boost/preprocessor/seq/first_n.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/control/if.hpp +- +boost/preprocessor/seq/detail/split.hpp +- +boost/preprocessor/tuple/eat.hpp +- +boost/preprocessor/tuple/elem.hpp +- + +src/3rdparty/include/boost/preprocessor/seq/fold_left.hpp +boost/preprocessor/arithmetic/dec.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/control/if.hpp +- +boost/preprocessor/debug/error.hpp +- +boost/preprocessor/detail/auto_rec.hpp +- +boost/preprocessor/seq/seq.hpp +- +boost/preprocessor/seq/size.hpp +- + +src/3rdparty/include/boost/preprocessor/seq/for_each_i.hpp +boost/preprocessor/arithmetic/dec.hpp +- +boost/preprocessor/arithmetic/inc.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/repetition/for.hpp +- +boost/preprocessor/seq/seq.hpp +- +boost/preprocessor/seq/size.hpp +- +boost/preprocessor/tuple/elem.hpp +- +boost/preprocessor/tuple/rem.hpp +- + +src/3rdparty/include/boost/preprocessor/seq/rest_n.hpp +boost/preprocessor/arithmetic/inc.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/facilities/empty.hpp +- +boost/preprocessor/seq/detail/split.hpp +- +boost/preprocessor/tuple/elem.hpp +- + +src/3rdparty/include/boost/preprocessor/seq/seq.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/seq/elem.hpp +- + +src/3rdparty/include/boost/preprocessor/seq/size.hpp +boost/preprocessor/cat.hpp +- +boost/preprocessor/config/config.hpp +- +boost/preprocessor/tuple/eat.hpp +- + +src/3rdparty/include/boost/preprocessor/seq/subseq.hpp +boost/preprocessor/config/config.hpp +- +boost/preprocessor/seq/first_n.hpp +- +boost/preprocessor/seq/rest_n.hpp +- + +src/3rdparty/include/boost/preprocessor/slot/detail/def.hpp + +src/3rdparty/include/boost/preprocessor/slot/slot.hpp +boost/preprocessor/cat.hpp +- +boost/preprocessor/slot/detail/def.hpp +- + +src/3rdparty/include/boost/preprocessor/stringize.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/tuple/eat.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/tuple/elem.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/tuple/rem.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/preprocessor/tuple/to_list.hpp +boost/preprocessor/config/config.hpp +- + +src/3rdparty/include/boost/range/as_literal.hpp +boost/range/detail/as_literal.hpp +- +boost/range/iterator_range.hpp +- +boost/range/detail/str_types.hpp +- +boost/detail/workaround.hpp +- +cstring +- +cwchar +- + +src/3rdparty/include/boost/range/begin.hpp +boost/range/config.hpp +- +boost/range/detail/begin.hpp +- +boost/range/iterator.hpp +- + +src/3rdparty/include/boost/range/config.hpp +boost/detail/workaround.hpp +- +boost/config.hpp +- + +src/3rdparty/include/boost/range/const_iterator.hpp +boost/range/config.hpp +- +boost/range/detail/const_iterator.hpp +- +boost/type_traits/remove_const.hpp +- +cstddef +- +utility +- + +src/3rdparty/include/boost/range/detail/as_literal.hpp +boost/range/detail/detail_str.hpp +- +boost/range/iterator_range.hpp +- + +src/3rdparty/include/boost/range/detail/begin.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- +boost/range/iterator.hpp +- +boost/range/detail/common.hpp +- +boost/range/value_type.hpp +- + +src/3rdparty/include/boost/range/detail/common.hpp +boost/range/config.hpp +- +boost/range/detail/sfinae.hpp +- +boost/type_traits/is_void.hpp +- +boost/type_traits/detail/ice_or.hpp +- +boost/mpl/if.hpp +- +boost/mpl/int.hpp +- +cstddef +- + +src/3rdparty/include/boost/range/detail/const_iterator.hpp +boost/range/detail/common.hpp +- +boost/range/detail/remove_extent.hpp +- + +src/3rdparty/include/boost/range/detail/detail_str.hpp +boost/config.hpp +- +boost/range/iterator.hpp +- +boost/range/detail/begin.hpp +- +boost/range/detail/end.hpp +- +boost/range/detail/size_type +- +boost/range/detail/value_type +- +boost/range/detail/common.hpp +- + +src/3rdparty/include/boost/range/detail/end.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- +boost/range/detail/vc6/end.hpp +- +boost/range/detail/implementation_help.hpp +- +boost/range/iterator.hpp +- +boost/range/detail/common.hpp +- +boost/range/detail/remove_extent.hpp +- + +src/3rdparty/include/boost/range/detail/implementation_help.hpp +boost/range/config.hpp +- +boost/range/detail/common.hpp +- +boost/type_traits/is_same.hpp +- +cstddef +- +string.h +- +wchar.h +- + +src/3rdparty/include/boost/range/detail/iterator.hpp +boost/range/detail/common.hpp +- +boost/range/detail/remove_extent.hpp +- +boost/static_assert.hpp +- + +src/3rdparty/include/boost/range/detail/remove_extent.hpp +boost/config.hpp +- +cstddef +- +boost/mpl/eval_if.hpp +- +boost/mpl/identity.hpp +- +boost/type_traits/is_same.hpp +- + +src/3rdparty/include/boost/range/detail/sfinae.hpp +boost/range/config.hpp +- +boost/type_traits/is_array.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- +utility +- + +src/3rdparty/include/boost/range/detail/size_type.hpp +boost/range/detail/common.hpp +- + +src/3rdparty/include/boost/range/detail/str_types.hpp +boost/range/size_type.hpp +- +boost/range/iterator.hpp +- + +src/3rdparty/include/boost/range/detail/vc6/end.hpp +boost/range/detail/implementation_help.hpp +- +boost/range/detail/implementation_help.hpp +- +boost/range/result_iterator.hpp +- +boost/range/detail/common.hpp +- +boost/range/detail/remove_extent.hpp +- + +src/3rdparty/include/boost/range/difference_type.hpp +boost/range/config.hpp +- +boost/range/iterator.hpp +- +boost/iterator/iterator_traits.hpp +- + +src/3rdparty/include/boost/range/distance.hpp +boost/range/begin.hpp +- +boost/range/end.hpp +- +boost/range/difference_type.hpp +- + +src/3rdparty/include/boost/range/empty.hpp +boost/range/config.hpp +- +boost/range/begin.hpp +- +boost/range/end.hpp +- + +src/3rdparty/include/boost/range/end.hpp +boost/range/config.hpp +- +boost/range/detail/end.hpp +- +boost/range/detail/implementation_help.hpp +- +boost/range/iterator.hpp +- +boost/range/const_iterator.hpp +- + +src/3rdparty/include/boost/range/functions.hpp +boost/range/begin.hpp +- +boost/range/end.hpp +- +boost/range/size.hpp +- +boost/range/distance.hpp +- +boost/range/empty.hpp +- +boost/range/rbegin.hpp +- +boost/range/rend.hpp +- + +src/3rdparty/include/boost/range/iterator.hpp +boost/range/config.hpp +- +boost/range/mutable_iterator.hpp +- +boost/range/const_iterator.hpp +- +boost/type_traits/is_const.hpp +- +boost/type_traits/remove_const.hpp +- +boost/mpl/eval_if.hpp +- + +src/3rdparty/include/boost/range/iterator_range.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- +boost/assert.hpp +- +boost/iterator/iterator_traits.hpp +- +boost/type_traits/is_abstract.hpp +- +boost/range/functions.hpp +- +boost/range/iterator.hpp +- +boost/range/difference_type.hpp +- +boost/utility/enable_if.hpp +- +iterator +- +algorithm +- +ostream +- +ostream.h +- +cstddef +- + +src/3rdparty/include/boost/range/mutable_iterator.hpp +boost/range/config.hpp +- +boost/range/detail/iterator.hpp +- +boost/iterator/iterator_traits.hpp +- +cstddef +- +utility +- + +src/3rdparty/include/boost/range/rbegin.hpp +boost/range/end.hpp +- +boost/range/reverse_iterator.hpp +- + +src/3rdparty/include/boost/range/rend.hpp +boost/range/begin.hpp +- +boost/range/reverse_iterator.hpp +- + +src/3rdparty/include/boost/range/result_iterator.hpp +boost/range/iterator.hpp +- + +src/3rdparty/include/boost/range/reverse_iterator.hpp +boost/range/config.hpp +- +boost/range/iterator.hpp +- +boost/iterator/reverse_iterator.hpp +- + +src/3rdparty/include/boost/range/size.hpp +boost/range/begin.hpp +- +boost/range/end.hpp +- +boost/range/difference_type.hpp +- +boost/assert.hpp +- + +src/3rdparty/include/boost/range/size_type.hpp +boost/range/config.hpp +- +boost/range/detail/size_type.hpp +- +boost/type_traits/remove_const.hpp +- +cstddef +- +utility +- + +src/3rdparty/include/boost/range/value_type.hpp +boost/range/config.hpp +- +boost/range/iterator.hpp +- +boost/iterator/iterator_traits.hpp +- + +src/3rdparty/include/boost/ref.hpp +boost/config.hpp +- +boost/utility/addressof.hpp +- +boost/mpl/bool.hpp +- +boost/detail/workaround.hpp +- +boost/type.hpp +- + +src/3rdparty/include/boost/shared_ptr.hpp +boost/config.hpp +- +boost/detail/shared_ptr_nmt.hpp +- +boost/config/no_tr1/memory.hpp +- +boost/assert.hpp +- +boost/checked_delete.hpp +- +boost/throw_exception.hpp +- +boost/detail/shared_count.hpp +- +boost/detail/workaround.hpp +- +boost/detail/sp_convertible.hpp +- +boost/detail/spinlock_pool.hpp +- +boost/memory_order.hpp +- +algorithm +- +functional +- +typeinfo +- +iosfwd +- +ostream +- + +src/3rdparty/include/boost/static_assert.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- + +src/3rdparty/include/boost/thread/condition.hpp +boost/thread/condition_variable.hpp +- + +src/3rdparty/include/boost/thread/condition_variable.hpp +boost/thread/detail/platform.hpp +- +boost/thread/win32/condition_variable.hpp +- +boost/thread/pthread/condition_variable.hpp +- + +src/3rdparty/include/boost/thread/detail/config.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- +platform.hpp +src/3rdparty/include/boost/thread/detail/platform.hpp +boost/config/auto_link.hpp +- + +src/3rdparty/include/boost/thread/detail/move.hpp +boost/utility/enable_if.hpp +- +boost/type_traits/is_convertible.hpp +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/detail/platform.hpp +boost/config.hpp +- +boost/config/requires_threads.hpp +- + +src/3rdparty/include/boost/thread/detail/thread.hpp +boost/thread/exceptions.hpp +- +ostream +- +boost/thread/detail/move.hpp +- +boost/thread/mutex.hpp +- +boost/thread/xtime.hpp +- +boost/thread/detail/thread_heap_alloc.hpp +- +boost/utility.hpp +- +boost/assert.hpp +- +list +- +algorithm +- +boost/ref.hpp +- +boost/cstdint.hpp +- +boost/bind.hpp +- +stdlib.h +- +memory +- +boost/utility/enable_if.hpp +- +boost/type_traits/remove_reference.hpp +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/detail/thread_heap_alloc.hpp +boost/thread/detail/platform.hpp +- +boost/thread/win32/thread_heap_alloc.hpp +- +boost/thread/pthread/thread_heap_alloc.hpp +- + +src/3rdparty/include/boost/thread/exceptions.hpp +boost/thread/detail/config.hpp +- +string +- +stdexcept +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/locks.hpp +boost/thread/detail/config.hpp +- +boost/thread/exceptions.hpp +- +boost/thread/detail/move.hpp +- +algorithm +- +iterator +- +boost/thread/thread_time.hpp +- +boost/detail/workaround.hpp +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/mutex.hpp +boost/thread/detail/platform.hpp +- +boost/thread/win32/mutex.hpp +- +boost/thread/pthread/mutex.hpp +- + +src/3rdparty/include/boost/thread/pthread/condition_variable.hpp +timespec.hpp +src/3rdparty/include/boost/thread/pthread/timespec.hpp +pthread_mutex_scoped_lock.hpp +src/3rdparty/include/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +thread_data.hpp +src/3rdparty/include/boost/thread/pthread/thread_data.hpp +condition_variable_fwd.hpp +src/3rdparty/include/boost/thread/pthread/condition_variable_fwd.hpp +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/pthread/condition_variable_fwd.hpp +boost/assert.hpp +- +pthread.h +- +boost/thread/mutex.hpp +- +boost/thread/locks.hpp +- +boost/thread/thread_time.hpp +- +boost/thread/xtime.hpp +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/pthread/mutex.hpp +pthread.h +- +boost/utility.hpp +- +boost/thread/exceptions.hpp +- +boost/thread/locks.hpp +- +boost/thread/thread_time.hpp +- +boost/thread/xtime.hpp +- +boost/assert.hpp +- +errno.h +- +timespec.hpp +src/3rdparty/include/boost/thread/pthread/timespec.hpp +pthread_mutex_scoped_lock.hpp +src/3rdparty/include/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +pthread.h +- +boost/assert.hpp +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/pthread/thread_data.hpp +boost/thread/detail/config.hpp +- +boost/thread/exceptions.hpp +- +boost/shared_ptr.hpp +- +boost/enable_shared_from_this.hpp +- +boost/thread/mutex.hpp +- +boost/optional.hpp +- +pthread.h +- +condition_variable_fwd.hpp +src/3rdparty/include/boost/thread/pthread/condition_variable_fwd.hpp +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/pthread/thread_heap_alloc.hpp +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/pthread/timespec.hpp +boost/thread/thread_time.hpp +- +boost/date_time/posix_time/conversion.hpp +- +pthread.h +- +unistd.h +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/thread.hpp +boost/thread/detail/platform.hpp +- +boost/thread/win32/thread_data.hpp +- +boost/thread/pthread/thread_data.hpp +- +boost/thread/detail/thread.hpp +- + +src/3rdparty/include/boost/thread/thread_time.hpp +boost/date_time/microsec_time_clock.hpp +- +boost/date_time/posix_time/posix_time_types.hpp +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/win32/basic_timed_mutex.hpp +boost/assert.hpp +- +thread_primitives.hpp +src/3rdparty/include/boost/thread/win32/thread_primitives.hpp +interlocked_read.hpp +src/3rdparty/include/boost/thread/win32/interlocked_read.hpp +boost/thread/thread_time.hpp +- +boost/thread/xtime.hpp +- +boost/detail/interlocked.hpp +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/win32/condition_variable.hpp +boost/thread/mutex.hpp +- +thread_primitives.hpp +src/3rdparty/include/boost/thread/win32/thread_primitives.hpp +limits.h +- +boost/assert.hpp +- +algorithm +- +boost/thread/thread.hpp +- +boost/thread/thread_time.hpp +- +interlocked_read.hpp +src/3rdparty/include/boost/thread/win32/interlocked_read.hpp +boost/thread/xtime.hpp +- +vector +- +boost/intrusive_ptr.hpp +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/win32/interlocked_read.hpp +boost/detail/interlocked.hpp +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/win32/mutex.hpp +basic_timed_mutex.hpp +src/3rdparty/include/boost/thread/win32/basic_timed_mutex.hpp +boost/utility.hpp +- +boost/thread/exceptions.hpp +- +boost/thread/locks.hpp +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/win32/thread_data.hpp +boost/thread/detail/config.hpp +- +boost/intrusive_ptr.hpp +- +boost/thread/thread_time.hpp +- +thread_primitives.hpp +src/3rdparty/include/boost/thread/win32/thread_primitives.hpp +thread_heap_alloc.hpp +src/3rdparty/include/boost/thread/win32/thread_heap_alloc.hpp +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/win32/thread_heap_alloc.hpp +new +- +thread_primitives.hpp +src/3rdparty/include/boost/thread/win32/thread_primitives.hpp +stdexcept +- +boost/assert.hpp +- +windows.h +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/win32/thread_primitives.hpp +boost/config.hpp +- +boost/assert.hpp +- +boost/thread/exceptions.hpp +- +boost/detail/interlocked.hpp +- +algorithm +- +windows.h +- +kfuncs.h +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/thread/xtime.hpp +boost/thread/detail/config.hpp +- +boost/cstdint.hpp +- +boost/thread/thread_time.hpp +- +boost/date_time/posix_time/conversion.hpp +- +boost/config/abi_prefix.hpp +- +boost/config/abi_suffix.hpp +- + +src/3rdparty/include/boost/throw_exception.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- +exception +- +boost/exception/enable_current_exception.hpp +- +boost/exception/enable_error_info.hpp +- + +src/3rdparty/include/boost/type.hpp + +src/3rdparty/include/boost/type_traits/add_const.hpp +boost/config.hpp +- +boost/type_traits/detail/type_trait_def.hpp +- +boost/type_traits/detail/type_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/add_pointer.hpp +boost/type_traits/remove_reference.hpp +- +boost/type_traits/detail/type_trait_def.hpp +- +boost/type_traits/detail/type_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/add_reference.hpp +boost/type_traits/is_reference.hpp +- +boost/detail/workaround.hpp +- +boost/config.hpp +- +boost/type_traits/detail/type_trait_def.hpp +- +boost/type_traits/detail/type_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/alignment_of.hpp +boost/config.hpp +- +cstddef +- +boost/type_traits/intrinsics.hpp +- +boost/type_traits/detail/size_t_trait_def.hpp +- +boost/type_traits/detail/size_t_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/arithmetic_traits.hpp +boost/type_traits/is_arithmetic.hpp +- +boost/type_traits/is_float.hpp +- +boost/type_traits/is_fundamental.hpp +- +boost/type_traits/is_integral.hpp +- +boost/type_traits/is_void.hpp +- + +src/3rdparty/include/boost/type_traits/broken_compiler_spec.hpp +boost/mpl/aux_/lambda_support.hpp +- +boost/config.hpp +- +boost/type_traits/detail/type_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/composite_traits.hpp +boost/type_traits/is_array.hpp +- +boost/type_traits/is_enum.hpp +- +boost/type_traits/is_member_pointer.hpp +- +boost/type_traits/is_member_function_pointer.hpp +- +boost/type_traits/is_pointer.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/is_union.hpp +- + +src/3rdparty/include/boost/type_traits/config.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- + +src/3rdparty/include/boost/type_traits/conversion_traits.hpp +boost/type_traits/is_convertible.hpp +- + +src/3rdparty/include/boost/type_traits/detail/bool_trait_def.hpp +boost/type_traits/detail/template_arity_spec.hpp +- +boost/type_traits/integral_constant.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/aux_/lambda_support.hpp +- +boost/config.hpp +- + +src/3rdparty/include/boost/type_traits/detail/bool_trait_undef.hpp + +src/3rdparty/include/boost/type_traits/detail/cv_traits_impl.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- + +src/3rdparty/include/boost/type_traits/detail/false_result.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/type_traits/detail/ice_and.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/type_traits/detail/ice_eq.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/type_traits/detail/ice_not.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/type_traits/detail/ice_or.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/type_traits/detail/is_function_ptr_helper.hpp +boost/type_traits/config.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/enum_params.hpp +- +boost/preprocessor/comma_if.hpp +- + +src/3rdparty/include/boost/type_traits/detail/is_function_ptr_tester.hpp +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/config.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/enum_params.hpp +- +boost/preprocessor/comma_if.hpp +- + +src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +boost/config.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/enum_params.hpp +- +boost/preprocessor/comma_if.hpp +- + +src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/config.hpp +- +boost/preprocessor/iterate.hpp +- +boost/preprocessor/enum_params.hpp +- +boost/preprocessor/comma_if.hpp +- + +src/3rdparty/include/boost/type_traits/detail/size_t_trait_def.hpp +boost/type_traits/detail/template_arity_spec.hpp +- +boost/type_traits/integral_constant.hpp +- +boost/mpl/aux_/lambda_support.hpp +- +boost/mpl/size_t.hpp +- +cstddef +- + +src/3rdparty/include/boost/type_traits/detail/size_t_trait_undef.hpp + +src/3rdparty/include/boost/type_traits/detail/template_arity_spec.hpp +boost/mpl/int.hpp +- +boost/mpl/aux_/template_arity_fwd.hpp +- +boost/mpl/aux_/preprocessor/params.hpp +- +boost/mpl/aux_/config/lambda.hpp +- +boost/mpl/aux_/config/overload_resolution.hpp +- + +src/3rdparty/include/boost/type_traits/detail/type_trait_def.hpp +boost/type_traits/detail/template_arity_spec.hpp +- +boost/mpl/aux_/lambda_support.hpp +- + +src/3rdparty/include/boost/type_traits/detail/type_trait_undef.hpp + +src/3rdparty/include/boost/type_traits/detail/wrap.hpp + +src/3rdparty/include/boost/type_traits/detail/yes_no_type.hpp + +src/3rdparty/include/boost/type_traits/function_traits.hpp +boost/config.hpp +- +boost/type_traits/is_function.hpp +- +boost/type_traits/add_pointer.hpp +- + +src/3rdparty/include/boost/type_traits/has_nothrow_copy.hpp +boost/type_traits/has_trivial_copy.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/has_trivial_copy.hpp +boost/type_traits/config.hpp +- +boost/type_traits/intrinsics.hpp +- +boost/type_traits/is_volatile.hpp +- +boost/type_traits/is_pod.hpp +- +boost/type_traits/detail/ice_and.hpp +- +boost/type_traits/detail/ice_or.hpp +- +boost/type_traits/detail/ice_not.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/ice.hpp +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/detail/ice_or.hpp +- +boost/type_traits/detail/ice_and.hpp +- +boost/type_traits/detail/ice_not.hpp +- +boost/type_traits/detail/ice_eq.hpp +- + +src/3rdparty/include/boost/type_traits/integral_constant.hpp +boost/config.hpp +- +boost/mpl/bool.hpp +- +boost/mpl/integral_c.hpp +- + +src/3rdparty/include/boost/type_traits/intrinsics.hpp +boost/type_traits/config.hpp +- +boost/type_traits/is_same.hpp +- +algorithm +- +type_traits.h +- +msl_utility +- +boost/type_traits/is_same.hpp +- +boost/type_traits/is_same.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/is_volatile.hpp +- + +src/3rdparty/include/boost/type_traits/is_abstract.hpp +boost/type_traits/intrinsics.hpp +- +boost/static_assert.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/is_class.hpp +- +boost/type_traits/detail/ice_and.hpp +- +boost/type_traits/is_polymorphic.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_arithmetic.hpp +boost/type_traits/is_integral.hpp +- +boost/type_traits/is_float.hpp +- +boost/type_traits/detail/ice_or.hpp +- +boost/config.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_array.hpp +boost/type_traits/config.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/detail/wrap.hpp +- +cstddef +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_base_and_derived.hpp +boost/type_traits/intrinsics.hpp +- +boost/type_traits/is_class.hpp +- +boost/type_traits/is_same.hpp +- +boost/type_traits/is_convertible.hpp +- +boost/type_traits/detail/ice_and.hpp +- +boost/type_traits/remove_cv.hpp +- +boost/config.hpp +- +boost/static_assert.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_class.hpp +boost/type_traits/config.hpp +- +boost/type_traits/intrinsics.hpp +- +boost/type_traits/is_union.hpp +- +boost/type_traits/detail/ice_and.hpp +- +boost/type_traits/detail/ice_not.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/is_scalar.hpp +- +boost/type_traits/is_array.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/is_void.hpp +- +boost/type_traits/is_function.hpp +- +boost/type_traits/remove_cv.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_const.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- +boost/type_traits/detail/cv_traits_impl.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/remove_bounds.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/is_array.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/detail/false_result.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_convertible.hpp +boost/type_traits/intrinsics.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/config.hpp +- +boost/type_traits/is_array.hpp +- +boost/type_traits/add_reference.hpp +- +boost/type_traits/ice.hpp +- +boost/type_traits/is_arithmetic.hpp +- +boost/type_traits/is_void.hpp +- +boost/type_traits/is_abstract.hpp +- +boost/type_traits/is_function.hpp +- +boost/type_traits/remove_reference.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_enum.hpp +boost/type_traits/intrinsics.hpp +- +boost/type_traits/add_reference.hpp +- +boost/type_traits/is_arithmetic.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/is_convertible.hpp +- +boost/type_traits/is_array.hpp +- +boost/type_traits/is_function.hpp +- +boost/type_traits/config.hpp +- +boost/type_traits/is_class.hpp +- +boost/type_traits/is_union.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_float.hpp +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_function.hpp +boost/type_traits/is_reference.hpp +- +boost/type_traits/detail/false_result.hpp +- +boost/config.hpp +- +boost/type_traits/detail/is_function_ptr_helper.hpp +- +boost/type_traits/detail/is_function_ptr_tester.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_fundamental.hpp +boost/type_traits/is_arithmetic.hpp +- +boost/type_traits/is_void.hpp +- +boost/type_traits/detail/ice_or.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_integral.hpp +boost/config.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_member_function_pointer.hpp +boost/type_traits/config.hpp +- +boost/detail/workaround.hpp +- +boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +- +boost/type_traits/remove_cv.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/is_array.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/detail/false_result.hpp +- +boost/type_traits/detail/ice_or.hpp +- +boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_member_pointer.hpp +boost/type_traits/config.hpp +- +boost/detail/workaround.hpp +- +boost/type_traits/is_member_function_pointer.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/is_array.hpp +- +boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/detail/false_result.hpp +- +boost/type_traits/detail/ice_or.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_pod.hpp +boost/type_traits/config.hpp +- +boost/type_traits/is_void.hpp +- +boost/type_traits/is_scalar.hpp +- +boost/type_traits/detail/ice_or.hpp +- +boost/type_traits/intrinsics.hpp +- +cstddef +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_pointer.hpp +boost/type_traits/is_member_pointer.hpp +- +boost/type_traits/detail/ice_and.hpp +- +boost/type_traits/detail/ice_not.hpp +- +boost/type_traits/config.hpp +- +boost/type_traits/remove_cv.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/is_array.hpp +- +boost/type_traits/detail/is_function_ptr_tester.hpp +- +boost/type_traits/detail/false_result.hpp +- +boost/type_traits/detail/ice_or.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_polymorphic.hpp +boost/type_traits/intrinsics.hpp +- +boost/type_traits/is_class.hpp +- +boost/type_traits/remove_cv.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/detail/workaround.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_reference.hpp +boost/type_traits/config.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/detail/wrap.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_same.hpp +boost/type_traits/config.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/detail/ice_and.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_scalar.hpp +boost/type_traits/is_arithmetic.hpp +- +boost/type_traits/is_enum.hpp +- +boost/type_traits/is_pointer.hpp +- +boost/type_traits/is_member_pointer.hpp +- +boost/type_traits/detail/ice_or.hpp +- +boost/config.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_union.hpp +boost/type_traits/remove_cv.hpp +- +boost/type_traits/config.hpp +- +boost/type_traits/intrinsics.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_void.hpp +boost/config.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/is_volatile.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- +boost/type_traits/detail/cv_traits_impl.hpp +- +boost/type_traits/remove_bounds.hpp +- +boost/type_traits/is_reference.hpp +- +boost/type_traits/is_array.hpp +- +boost/type_traits/detail/yes_no_type.hpp +- +boost/type_traits/detail/false_result.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/msvc/remove_bounds.hpp +boost/type_traits/msvc/typeof.hpp +- +boost/type_traits/is_array.hpp +- + +src/3rdparty/include/boost/type_traits/msvc/remove_const.hpp +boost/type_traits/msvc/typeof.hpp +- +boost/type_traits/is_volatile.hpp +- +boost/type_traits/is_const.hpp +- +boost/type_traits/is_pointer.hpp +- +boost/type_traits/is_array.hpp +- + +src/3rdparty/include/boost/type_traits/msvc/remove_cv.hpp +boost/type_traits/msvc/typeof.hpp +- +boost/type_traits/is_volatile.hpp +- +boost/type_traits/is_const.hpp +- +boost/type_traits/is_pointer.hpp +- +boost/type_traits/is_array.hpp +- + +src/3rdparty/include/boost/type_traits/msvc/remove_pointer.hpp +boost/type_traits/msvc/typeof.hpp +- +boost/type_traits/is_pointer.hpp +- + +src/3rdparty/include/boost/type_traits/msvc/remove_reference.hpp +boost/type_traits/msvc/typeof.hpp +- +boost/type_traits/is_reference.hpp +- + +src/3rdparty/include/boost/type_traits/msvc/typeof.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- + +src/3rdparty/include/boost/type_traits/remove_bounds.hpp +boost/config.hpp +- +cstddef +- +boost/detail/workaround.hpp +- +boost/type_traits/msvc/remove_bounds.hpp +- +boost/type_traits/detail/type_trait_def.hpp +- +boost/type_traits/detail/type_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/remove_const.hpp +boost/type_traits/is_volatile.hpp +- +boost/type_traits/broken_compiler_spec.hpp +- +boost/type_traits/detail/cv_traits_impl.hpp +- +boost/config.hpp +- +boost/detail/workaround.hpp +- +cstddef +- +boost/type_traits/msvc/remove_const.hpp +- +boost/type_traits/detail/type_trait_def.hpp +- +boost/type_traits/detail/type_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/remove_cv.hpp +boost/type_traits/broken_compiler_spec.hpp +- +boost/type_traits/detail/cv_traits_impl.hpp +- +boost/config.hpp +- +boost/detail/workaround.hpp +- +cstddef +- +boost/type_traits/msvc/remove_cv.hpp +- +boost/type_traits/detail/type_trait_def.hpp +- +boost/type_traits/detail/type_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/remove_pointer.hpp +boost/type_traits/broken_compiler_spec.hpp +- +boost/config.hpp +- +boost/detail/workaround.hpp +- +boost/type_traits/msvc/remove_pointer.hpp +- +boost/type_traits/detail/type_trait_def.hpp +- +boost/type_traits/detail/type_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/remove_reference.hpp +boost/type_traits/broken_compiler_spec.hpp +- +boost/config.hpp +- +boost/detail/workaround.hpp +- +boost/type_traits/msvc/remove_reference.hpp +- +boost/type_traits/detail/type_trait_def.hpp +- +boost/type_traits/detail/type_trait_undef.hpp +- + +src/3rdparty/include/boost/type_traits/type_with_alignment.hpp +boost/mpl/if.hpp +- +boost/preprocessor/list/for_each_i.hpp +- +boost/preprocessor/tuple/to_list.hpp +- +boost/preprocessor/cat.hpp +- +boost/preprocessor/list/transform.hpp +- +boost/preprocessor/list/append.hpp +- +boost/type_traits/alignment_of.hpp +- +boost/type_traits/is_pod.hpp +- +boost/static_assert.hpp +- +boost/config.hpp +- +boost/type_traits/detail/bool_trait_def.hpp +- +cstddef +- +boost/type_traits/detail/bool_trait_undef.hpp +- + +src/3rdparty/include/boost/utility.hpp +boost/utility/addressof.hpp +- +boost/utility/base_from_member.hpp +- +boost/utility/enable_if.hpp +- +boost/checked_delete.hpp +- +boost/next_prior.hpp +- +boost/noncopyable.hpp +- + +src/3rdparty/include/boost/utility/addressof.hpp +boost/config.hpp +- +boost/detail/workaround.hpp +- + +src/3rdparty/include/boost/utility/base_from_member.hpp +boost/preprocessor/arithmetic/inc.hpp +- +boost/preprocessor/repetition/enum_binary_params.hpp +- +boost/preprocessor/repetition/enum_params.hpp +- +boost/preprocessor/repetition/repeat_from_to.hpp +- + +src/3rdparty/include/boost/utility/compare_pointees.hpp +functional +- + +src/3rdparty/include/boost/utility/enable_if.hpp +boost/config.hpp +src/3rdparty/include/boost/utility/boost/config.hpp + +src/3rdparty/include/boost/version.hpp + +src/3rdparty/include/boost/visit_each.hpp +boost/config.hpp +- + +src/3rdparty/include/boost/weak_ptr.hpp +memory +- +boost/detail/shared_count.hpp +- +boost/shared_ptr.hpp +- + +src/core/IPlugin.h +core/config.h +- + +src/core/audio/IBuffer.h +core/config.h +- + +src/core/audio/IOutput.h +core/config.h +- +core/filestreams/IFileStream.h +- +core/audio/IBuffer.h +- +core/audio/IPlayer.h +- + +src/core/audio/IPlayer.h +core/config.h +- +core/audio/IBuffer.h +- + +src/core/config.h +windows.h +- +TCHAR.h +- +cassert +- +string +- + +src/core/filestreams/IFileStream.h +core/config.h +- +boost/shared_ptr.hpp +- +boost/iostreams/stream.hpp +- +boost/iostreams/stream_buffer.hpp +- +boost/iostreams/device/file_descriptor.hpp +- + diff --git a/src/contrib/alsaout/CMakeFiles/alsaout.dir/DependInfo.cmake b/src/contrib/alsaout/CMakeFiles/alsaout.dir/DependInfo.cmake new file mode 100644 index 000000000..9d86566cd --- /dev/null +++ b/src/contrib/alsaout/CMakeFiles/alsaout.dir/DependInfo.cmake @@ -0,0 +1,26 @@ +# The set of languages for which implicit dependencies are needed: +SET(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +SET(CMAKE_DEPENDS_CHECK_CXX + "/home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOut.cpp" "/home/urioxis/programming/musikcube/src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o" + "/home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOutBuffer.cpp" "/home/urioxis/programming/musikcube/src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o" + "/home/urioxis/programming/musikcube/src/contrib/alsaout/alsaout_plugin.cpp" "/home/urioxis/programming/musikcube/src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o" + ) +SET(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +SET(CMAKE_TARGET_DEFINITIONS + "HAVE_BOOST" + "_FILE_OFFSET_BITS=64" + "_HAVE_TAGLIB" + "XML_STATIC" + "_CRT_SECURE_NO_DEPRECATE" + "_DEBUG" + ) + +# Targets to which this target links. +SET(CMAKE_TARGET_LINKED_INFO_FILES + "/home/urioxis/programming/musikcube/src/3rdparty/CMakeFiles/md5.dir/DependInfo.cmake" + ) diff --git a/src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make b/src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make new file mode 100644 index 000000000..e25286c31 --- /dev/null +++ b/src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make @@ -0,0 +1,158 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.6 + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canoncical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# The program to use to edit the cache. +CMAKE_EDIT_COMMAND = /usr/bin/ccmake + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/urioxis/programming/musikcube + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/urioxis/programming/musikcube + +# Include any dependencies generated for this target. +include src/contrib/alsaout/CMakeFiles/alsaout.dir/depend.make + +# Include the progress variables for this target. +include src/contrib/alsaout/CMakeFiles/alsaout.dir/progress.make + +# Include the compile flags for this target's objects. +include src/contrib/alsaout/CMakeFiles/alsaout.dir/flags.make + +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/contrib/alsaout/CMakeFiles/alsaout.dir/flags.make +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/contrib/alsaout/alsaout_plugin.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/urioxis/programming/musikcube/CMakeFiles $(CMAKE_PROGRESS_1) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o" + cd /home/urioxis/programming/musikcube/src/contrib/alsaout && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o -c /home/urioxis/programming/musikcube/src/contrib/alsaout/alsaout_plugin.cpp + +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/alsaout.dir/alsaout_plugin.cpp.i" + cd /home/urioxis/programming/musikcube/src/contrib/alsaout && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/urioxis/programming/musikcube/src/contrib/alsaout/alsaout_plugin.cpp > CMakeFiles/alsaout.dir/alsaout_plugin.cpp.i + +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/alsaout.dir/alsaout_plugin.cpp.s" + cd /home/urioxis/programming/musikcube/src/contrib/alsaout && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/urioxis/programming/musikcube/src/contrib/alsaout/alsaout_plugin.cpp -o CMakeFiles/alsaout.dir/alsaout_plugin.cpp.s + +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o.requires: +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o.requires + +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o.provides: src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o.requires + $(MAKE) -f src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o.provides.build +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o.provides + +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o.provides.build: src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o.provides.build + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/contrib/alsaout/CMakeFiles/alsaout.dir/flags.make +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/contrib/alsaout/AlsaOut.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/urioxis/programming/musikcube/CMakeFiles $(CMAKE_PROGRESS_2) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o" + cd /home/urioxis/programming/musikcube/src/contrib/alsaout && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/alsaout.dir/AlsaOut.cpp.o -c /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOut.cpp + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/alsaout.dir/AlsaOut.cpp.i" + cd /home/urioxis/programming/musikcube/src/contrib/alsaout && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOut.cpp > CMakeFiles/alsaout.dir/AlsaOut.cpp.i + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/alsaout.dir/AlsaOut.cpp.s" + cd /home/urioxis/programming/musikcube/src/contrib/alsaout && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOut.cpp -o CMakeFiles/alsaout.dir/AlsaOut.cpp.s + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o.requires: +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o.requires + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o.provides: src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o.requires + $(MAKE) -f src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o.provides.build +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o.provides + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o.provides.build: src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o.provides.build + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/contrib/alsaout/CMakeFiles/alsaout.dir/flags.make +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/contrib/alsaout/AlsaOutBuffer.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/urioxis/programming/musikcube/CMakeFiles $(CMAKE_PROGRESS_3) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o" + cd /home/urioxis/programming/musikcube/src/contrib/alsaout && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o -c /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOutBuffer.cpp + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.i" + cd /home/urioxis/programming/musikcube/src/contrib/alsaout && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOutBuffer.cpp > CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.i + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.s" + cd /home/urioxis/programming/musikcube/src/contrib/alsaout && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOutBuffer.cpp -o CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.s + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o.requires: +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o.requires + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o.provides: src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o.requires + $(MAKE) -f src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o.provides.build +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o.provides + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o.provides.build: src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o.provides.build + +# Object files for target alsaout +alsaout_OBJECTS = \ +"CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o" \ +"CMakeFiles/alsaout.dir/AlsaOut.cpp.o" \ +"CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o" + +# External object files for target alsaout +alsaout_EXTERNAL_OBJECTS = + +lib/libalsaout.so: src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o +lib/libalsaout.so: src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o +lib/libalsaout.so: src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o +lib/libalsaout.so: lib/libmd5.a +lib/libalsaout.so: src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make +lib/libalsaout.so: src/contrib/alsaout/CMakeFiles/alsaout.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking CXX shared library ../../../lib/libalsaout.so" + cd /home/urioxis/programming/musikcube/src/contrib/alsaout && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/alsaout.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +src/contrib/alsaout/CMakeFiles/alsaout.dir/build: lib/libalsaout.so +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/build + +src/contrib/alsaout/CMakeFiles/alsaout.dir/requires: src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o.requires +src/contrib/alsaout/CMakeFiles/alsaout.dir/requires: src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o.requires +src/contrib/alsaout/CMakeFiles/alsaout.dir/requires: src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o.requires +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/requires + +src/contrib/alsaout/CMakeFiles/alsaout.dir/clean: + cd /home/urioxis/programming/musikcube/src/contrib/alsaout && $(CMAKE_COMMAND) -P CMakeFiles/alsaout.dir/cmake_clean.cmake +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/clean + +src/contrib/alsaout/CMakeFiles/alsaout.dir/depend: + cd /home/urioxis/programming/musikcube && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/urioxis/programming/musikcube /home/urioxis/programming/musikcube/src/contrib/alsaout /home/urioxis/programming/musikcube /home/urioxis/programming/musikcube/src/contrib/alsaout /home/urioxis/programming/musikcube/src/contrib/alsaout/CMakeFiles/alsaout.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/depend + diff --git a/src/contrib/alsaout/CMakeFiles/alsaout.dir/cmake_clean.cmake b/src/contrib/alsaout/CMakeFiles/alsaout.dir/cmake_clean.cmake new file mode 100644 index 000000000..b4303aacb --- /dev/null +++ b/src/contrib/alsaout/CMakeFiles/alsaout.dir/cmake_clean.cmake @@ -0,0 +1,13 @@ +FILE(REMOVE_RECURSE + "CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o" + "CMakeFiles/alsaout.dir/AlsaOut.cpp.o" + "CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o" + "../../../lib/libalsaout.pdb" + "../../../lib/libalsaout.a" + "../../../lib/libalsaout.so" +) + +# Per-language clean rules from dependency scanning. +FOREACH(lang CXX) + INCLUDE(CMakeFiles/alsaout.dir/cmake_clean_${lang}.cmake OPTIONAL) +ENDFOREACH(lang) diff --git a/src/contrib/alsaout/CMakeFiles/alsaout.dir/depend.internal b/src/contrib/alsaout/CMakeFiles/alsaout.dir/depend.internal new file mode 100644 index 000000000..015911513 --- /dev/null +++ b/src/contrib/alsaout/CMakeFiles/alsaout.dir/depend.internal @@ -0,0 +1,1708 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.6 + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o + /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOut.cpp + /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOut.h + /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOutBuffer.h + /home/urioxis/programming/musikcube/src/contrib/alsaout/pch.h + src/3rdparty/include/boost/algorithm/string/case_conv.hpp + src/3rdparty/include/boost/algorithm/string/compare.hpp + src/3rdparty/include/boost/algorithm/string/concept.hpp + src/3rdparty/include/boost/algorithm/string/config.hpp + src/3rdparty/include/boost/algorithm/string/constants.hpp + src/3rdparty/include/boost/algorithm/string/detail/case_conv.hpp + src/3rdparty/include/boost/algorithm/string/detail/find_format.hpp + src/3rdparty/include/boost/algorithm/string/detail/find_format_all.hpp + src/3rdparty/include/boost/algorithm/string/detail/find_format_store.hpp + src/3rdparty/include/boost/algorithm/string/detail/finder.hpp + src/3rdparty/include/boost/algorithm/string/detail/formatter.hpp + src/3rdparty/include/boost/algorithm/string/detail/replace_storage.hpp + src/3rdparty/include/boost/algorithm/string/detail/sequence.hpp + src/3rdparty/include/boost/algorithm/string/detail/util.hpp + src/3rdparty/include/boost/algorithm/string/find_format.hpp + src/3rdparty/include/boost/algorithm/string/finder.hpp + src/3rdparty/include/boost/algorithm/string/formatter.hpp + src/3rdparty/include/boost/algorithm/string/replace.hpp + src/3rdparty/include/boost/algorithm/string/sequence_traits.hpp + src/3rdparty/include/boost/algorithm/string/yes_no_type.hpp + src/3rdparty/include/boost/assert.hpp + src/3rdparty/include/boost/bind.hpp + src/3rdparty/include/boost/bind/arg.hpp + src/3rdparty/include/boost/bind/bind_cc.hpp + src/3rdparty/include/boost/bind/bind_mf2_cc.hpp + src/3rdparty/include/boost/bind/bind_mf_cc.hpp + src/3rdparty/include/boost/bind/bind_template.hpp + src/3rdparty/include/boost/bind/mem_fn_cc.hpp + src/3rdparty/include/boost/bind/mem_fn_template.hpp + src/3rdparty/include/boost/bind/mem_fn_vw.hpp + src/3rdparty/include/boost/bind/placeholders.hpp + src/3rdparty/include/boost/bind/storage.hpp + src/3rdparty/include/boost/call_traits.hpp + src/3rdparty/include/boost/checked_delete.hpp + src/3rdparty/include/boost/concept/assert.hpp + src/3rdparty/include/boost/concept/detail/borland.hpp + src/3rdparty/include/boost/concept/detail/concept_def.hpp + src/3rdparty/include/boost/concept/detail/concept_undef.hpp + src/3rdparty/include/boost/concept/detail/general.hpp + src/3rdparty/include/boost/concept/detail/has_constraints.hpp + src/3rdparty/include/boost/concept/detail/msvc.hpp + src/3rdparty/include/boost/concept/usage.hpp + src/3rdparty/include/boost/concept_check.hpp + src/3rdparty/include/boost/config.hpp + src/3rdparty/include/boost/config/abi_prefix.hpp + src/3rdparty/include/boost/config/abi_suffix.hpp + src/3rdparty/include/boost/config/auto_link.hpp + src/3rdparty/include/boost/config/no_tr1/functional.hpp + src/3rdparty/include/boost/config/no_tr1/memory.hpp + src/3rdparty/include/boost/config/no_tr1/utility.hpp + src/3rdparty/include/boost/config/posix_features.hpp + src/3rdparty/include/boost/config/requires_threads.hpp + src/3rdparty/include/boost/config/select_compiler_config.hpp + src/3rdparty/include/boost/config/select_platform_config.hpp + src/3rdparty/include/boost/config/select_stdlib_config.hpp + src/3rdparty/include/boost/config/suffix.hpp + src/3rdparty/include/boost/cstdint.hpp + src/3rdparty/include/boost/current_function.hpp + src/3rdparty/include/boost/date_time/adjust_functors.hpp + src/3rdparty/include/boost/date_time/c_time.hpp + src/3rdparty/include/boost/date_time/compiler_config.hpp + src/3rdparty/include/boost/date_time/constrained_value.hpp + src/3rdparty/include/boost/date_time/date.hpp + src/3rdparty/include/boost/date_time/date_clock_device.hpp + src/3rdparty/include/boost/date_time/date_defs.hpp + src/3rdparty/include/boost/date_time/date_duration.hpp + src/3rdparty/include/boost/date_time/date_duration_types.hpp + src/3rdparty/include/boost/date_time/date_facet.hpp + src/3rdparty/include/boost/date_time/date_format_simple.hpp + src/3rdparty/include/boost/date_time/date_formatting.hpp + src/3rdparty/include/boost/date_time/date_formatting_limited.hpp + src/3rdparty/include/boost/date_time/date_generator_formatter.hpp + src/3rdparty/include/boost/date_time/date_generator_parser.hpp + src/3rdparty/include/boost/date_time/date_generators.hpp + src/3rdparty/include/boost/date_time/date_iterator.hpp + src/3rdparty/include/boost/date_time/dst_rules.hpp + src/3rdparty/include/boost/date_time/filetime_functions.hpp + src/3rdparty/include/boost/date_time/format_date_parser.hpp + src/3rdparty/include/boost/date_time/gregorian/conversion.hpp + src/3rdparty/include/boost/date_time/gregorian/formatters.hpp + src/3rdparty/include/boost/date_time/gregorian/formatters_limited.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_calendar.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_date.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_day.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_day_of_year.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_duration.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_duration_types.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_month.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_weekday.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_year.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_ymd.hpp + src/3rdparty/include/boost/date_time/gregorian/gregorian_io.hpp + src/3rdparty/include/boost/date_time/gregorian/gregorian_types.hpp + src/3rdparty/include/boost/date_time/gregorian_calendar.hpp + src/3rdparty/include/boost/date_time/gregorian_calendar.ipp + src/3rdparty/include/boost/date_time/int_adapter.hpp + src/3rdparty/include/boost/date_time/iso_format.hpp + src/3rdparty/include/boost/date_time/locale_config.hpp + src/3rdparty/include/boost/date_time/microsec_time_clock.hpp + src/3rdparty/include/boost/date_time/parse_format_base.hpp + src/3rdparty/include/boost/date_time/period.hpp + src/3rdparty/include/boost/date_time/period_formatter.hpp + src/3rdparty/include/boost/date_time/period_parser.hpp + src/3rdparty/include/boost/date_time/posix_time/conversion.hpp + src/3rdparty/include/boost/date_time/posix_time/date_duration_operators.hpp + src/3rdparty/include/boost/date_time/posix_time/posix_time_config.hpp + src/3rdparty/include/boost/date_time/posix_time/posix_time_duration.hpp + src/3rdparty/include/boost/date_time/posix_time/posix_time_system.hpp + src/3rdparty/include/boost/date_time/posix_time/posix_time_types.hpp + src/3rdparty/include/boost/date_time/posix_time/ptime.hpp + src/3rdparty/include/boost/date_time/posix_time/time_period.hpp + src/3rdparty/include/boost/date_time/special_defs.hpp + src/3rdparty/include/boost/date_time/special_values_formatter.hpp + src/3rdparty/include/boost/date_time/special_values_parser.hpp + src/3rdparty/include/boost/date_time/string_convert.hpp + src/3rdparty/include/boost/date_time/string_parse_tree.hpp + src/3rdparty/include/boost/date_time/strings_from_facet.hpp + src/3rdparty/include/boost/date_time/time.hpp + src/3rdparty/include/boost/date_time/time_clock.hpp + src/3rdparty/include/boost/date_time/time_defs.hpp + src/3rdparty/include/boost/date_time/time_duration.hpp + src/3rdparty/include/boost/date_time/time_iterator.hpp + src/3rdparty/include/boost/date_time/time_resolution_traits.hpp + src/3rdparty/include/boost/date_time/time_system_counted.hpp + src/3rdparty/include/boost/date_time/time_system_split.hpp + src/3rdparty/include/boost/date_time/wrapping_int.hpp + src/3rdparty/include/boost/date_time/year_month_day.hpp + src/3rdparty/include/boost/detail/atomic_count.hpp + src/3rdparty/include/boost/detail/atomic_count_gcc.hpp + src/3rdparty/include/boost/detail/atomic_count_gcc_x86.hpp + src/3rdparty/include/boost/detail/atomic_count_pthreads.hpp + src/3rdparty/include/boost/detail/atomic_count_sync.hpp + src/3rdparty/include/boost/detail/atomic_count_win32.hpp + src/3rdparty/include/boost/detail/bad_weak_ptr.hpp + src/3rdparty/include/boost/detail/call_traits.hpp + src/3rdparty/include/boost/detail/endian.hpp + src/3rdparty/include/boost/detail/indirect_traits.hpp + src/3rdparty/include/boost/detail/interlocked.hpp + src/3rdparty/include/boost/detail/is_function_ref_tester.hpp + src/3rdparty/include/boost/detail/iterator.hpp + src/3rdparty/include/boost/detail/lcast_precision.hpp + src/3rdparty/include/boost/detail/lightweight_mutex.hpp + src/3rdparty/include/boost/detail/limits.hpp + src/3rdparty/include/boost/detail/lwm_nop.hpp + src/3rdparty/include/boost/detail/lwm_pthreads.hpp + src/3rdparty/include/boost/detail/lwm_win32_cs.hpp + src/3rdparty/include/boost/detail/ob_call_traits.hpp + src/3rdparty/include/boost/detail/quick_allocator.hpp + src/3rdparty/include/boost/detail/reference_content.hpp + src/3rdparty/include/boost/detail/shared_count.hpp + src/3rdparty/include/boost/detail/shared_ptr_nmt.hpp + src/3rdparty/include/boost/detail/sp_convertible.hpp + src/3rdparty/include/boost/detail/sp_counted_base.hpp + src/3rdparty/include/boost/detail/sp_counted_base_acc_ia64.hpp + src/3rdparty/include/boost/detail/sp_counted_base_cw_ppc.hpp + src/3rdparty/include/boost/detail/sp_counted_base_gcc_ia64.hpp + src/3rdparty/include/boost/detail/sp_counted_base_gcc_ppc.hpp + src/3rdparty/include/boost/detail/sp_counted_base_gcc_sparc.hpp + src/3rdparty/include/boost/detail/sp_counted_base_gcc_x86.hpp + src/3rdparty/include/boost/detail/sp_counted_base_nt.hpp + src/3rdparty/include/boost/detail/sp_counted_base_pt.hpp + src/3rdparty/include/boost/detail/sp_counted_base_spin.hpp + src/3rdparty/include/boost/detail/sp_counted_base_sync.hpp + src/3rdparty/include/boost/detail/sp_counted_base_w32.hpp + src/3rdparty/include/boost/detail/sp_counted_impl.hpp + src/3rdparty/include/boost/detail/sp_typeinfo.hpp + src/3rdparty/include/boost/detail/spinlock.hpp + src/3rdparty/include/boost/detail/spinlock_gcc_arm.hpp + src/3rdparty/include/boost/detail/spinlock_nt.hpp + src/3rdparty/include/boost/detail/spinlock_pool.hpp + src/3rdparty/include/boost/detail/spinlock_pt.hpp + src/3rdparty/include/boost/detail/spinlock_sync.hpp + src/3rdparty/include/boost/detail/spinlock_w32.hpp + src/3rdparty/include/boost/detail/workaround.hpp + src/3rdparty/include/boost/detail/yield_k.hpp + src/3rdparty/include/boost/enable_shared_from_this.hpp + src/3rdparty/include/boost/exception/detail/cloning_base.hpp + src/3rdparty/include/boost/exception/detail/counted_base.hpp + src/3rdparty/include/boost/exception/enable_current_exception.hpp + src/3rdparty/include/boost/exception/enable_error_info.hpp + src/3rdparty/include/boost/exception/exception.hpp + src/3rdparty/include/boost/function.hpp + src/3rdparty/include/boost/function/detail/maybe_include.hpp + src/3rdparty/include/boost/function/detail/prologue.hpp + src/3rdparty/include/boost/function/function0.hpp + src/3rdparty/include/boost/function/function1.hpp + src/3rdparty/include/boost/function/function10.hpp + src/3rdparty/include/boost/function/function2.hpp + src/3rdparty/include/boost/function/function3.hpp + src/3rdparty/include/boost/function/function4.hpp + src/3rdparty/include/boost/function/function5.hpp + src/3rdparty/include/boost/function/function6.hpp + src/3rdparty/include/boost/function/function7.hpp + src/3rdparty/include/boost/function/function8.hpp + src/3rdparty/include/boost/function/function9.hpp + src/3rdparty/include/boost/function/function_base.hpp + src/3rdparty/include/boost/function/function_template.hpp + src/3rdparty/include/boost/function_equal.hpp + src/3rdparty/include/boost/get_pointer.hpp + src/3rdparty/include/boost/implicit_cast.hpp + src/3rdparty/include/boost/integer_traits.hpp + src/3rdparty/include/boost/intrusive_ptr.hpp + src/3rdparty/include/boost/io/ios_state.hpp + src/3rdparty/include/boost/io_fwd.hpp + src/3rdparty/include/boost/is_placeholder.hpp + src/3rdparty/include/boost/iterator.hpp + src/3rdparty/include/boost/iterator/detail/config_def.hpp + src/3rdparty/include/boost/iterator/detail/config_undef.hpp + src/3rdparty/include/boost/iterator/detail/enable_if.hpp + src/3rdparty/include/boost/iterator/detail/facade_iterator_category.hpp + src/3rdparty/include/boost/iterator/interoperable.hpp + src/3rdparty/include/boost/iterator/iterator_adaptor.hpp + src/3rdparty/include/boost/iterator/iterator_categories.hpp + src/3rdparty/include/boost/iterator/iterator_facade.hpp + src/3rdparty/include/boost/iterator/iterator_traits.hpp + src/3rdparty/include/boost/iterator/reverse_iterator.hpp + src/3rdparty/include/boost/iterator/transform_iterator.hpp + src/3rdparty/include/boost/lexical_cast.hpp + src/3rdparty/include/boost/limits.hpp + src/3rdparty/include/boost/mem_fn.hpp + src/3rdparty/include/boost/memory_order.hpp + src/3rdparty/include/boost/mpl/always.hpp + src/3rdparty/include/boost/mpl/and.hpp + src/3rdparty/include/boost/mpl/apply.hpp + src/3rdparty/include/boost/mpl/apply_fwd.hpp + src/3rdparty/include/boost/mpl/apply_wrap.hpp + src/3rdparty/include/boost/mpl/arg.hpp + src/3rdparty/include/boost/mpl/arg_fwd.hpp + src/3rdparty/include/boost/mpl/assert.hpp + src/3rdparty/include/boost/mpl/aux_/adl_barrier.hpp + src/3rdparty/include/boost/mpl/aux_/arg_typedef.hpp + src/3rdparty/include/boost/mpl/aux_/arity.hpp + src/3rdparty/include/boost/mpl/aux_/arity_spec.hpp + src/3rdparty/include/boost/mpl/aux_/common_name_wknd.hpp + src/3rdparty/include/boost/mpl/aux_/config/adl.hpp + src/3rdparty/include/boost/mpl/aux_/config/arrays.hpp + src/3rdparty/include/boost/mpl/aux_/config/bind.hpp + src/3rdparty/include/boost/mpl/aux_/config/compiler.hpp + src/3rdparty/include/boost/mpl/aux_/config/ctps.hpp + src/3rdparty/include/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp + src/3rdparty/include/boost/mpl/aux_/config/dtp.hpp + src/3rdparty/include/boost/mpl/aux_/config/eti.hpp + src/3rdparty/include/boost/mpl/aux_/config/gcc.hpp + src/3rdparty/include/boost/mpl/aux_/config/has_apply.hpp + src/3rdparty/include/boost/mpl/aux_/config/has_xxx.hpp + src/3rdparty/include/boost/mpl/aux_/config/integral.hpp + src/3rdparty/include/boost/mpl/aux_/config/intel.hpp + src/3rdparty/include/boost/mpl/aux_/config/lambda.hpp + src/3rdparty/include/boost/mpl/aux_/config/msvc.hpp + src/3rdparty/include/boost/mpl/aux_/config/msvc_typename.hpp + src/3rdparty/include/boost/mpl/aux_/config/nttp.hpp + src/3rdparty/include/boost/mpl/aux_/config/overload_resolution.hpp + src/3rdparty/include/boost/mpl/aux_/config/pp_counter.hpp + src/3rdparty/include/boost/mpl/aux_/config/preprocessor.hpp + src/3rdparty/include/boost/mpl/aux_/config/static_constant.hpp + src/3rdparty/include/boost/mpl/aux_/config/ttp.hpp + src/3rdparty/include/boost/mpl/aux_/config/use_preprocessed.hpp + src/3rdparty/include/boost/mpl/aux_/config/workaround.hpp + src/3rdparty/include/boost/mpl/aux_/count_args.hpp + src/3rdparty/include/boost/mpl/aux_/full_lambda.hpp + src/3rdparty/include/boost/mpl/aux_/has_apply.hpp + src/3rdparty/include/boost/mpl/aux_/has_rebind.hpp + src/3rdparty/include/boost/mpl/aux_/has_type.hpp + src/3rdparty/include/boost/mpl/aux_/include_preprocessed.hpp + src/3rdparty/include/boost/mpl/aux_/integral_wrapper.hpp + src/3rdparty/include/boost/mpl/aux_/lambda_arity_param.hpp + src/3rdparty/include/boost/mpl/aux_/lambda_no_ctps.hpp + src/3rdparty/include/boost/mpl/aux_/lambda_support.hpp + src/3rdparty/include/boost/mpl/aux_/logical_op.hpp + src/3rdparty/include/boost/mpl/aux_/msvc_dtw.hpp + src/3rdparty/include/boost/mpl/aux_/msvc_is_class.hpp + src/3rdparty/include/boost/mpl/aux_/msvc_never_true.hpp + src/3rdparty/include/boost/mpl/aux_/na.hpp + src/3rdparty/include/boost/mpl/aux_/na_assert.hpp + src/3rdparty/include/boost/mpl/aux_/na_fwd.hpp + src/3rdparty/include/boost/mpl/aux_/na_spec.hpp + src/3rdparty/include/boost/mpl/aux_/nested_type_wknd.hpp + src/3rdparty/include/boost/mpl/aux_/nttp_decl.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/add.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/def_params_tail.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/default_params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/enum.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/ext_params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/filter_params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/partial_spec_params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/range.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/repeat.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/sub.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/tuple.hpp + src/3rdparty/include/boost/mpl/aux_/static_cast.hpp + src/3rdparty/include/boost/mpl/aux_/template_arity.hpp + src/3rdparty/include/boost/mpl/aux_/template_arity_fwd.hpp + src/3rdparty/include/boost/mpl/aux_/type_wrapper.hpp + src/3rdparty/include/boost/mpl/aux_/value_wknd.hpp + src/3rdparty/include/boost/mpl/aux_/yes_no.hpp + src/3rdparty/include/boost/mpl/bind.hpp + src/3rdparty/include/boost/mpl/bind_fwd.hpp + src/3rdparty/include/boost/mpl/bool.hpp + src/3rdparty/include/boost/mpl/bool_fwd.hpp + src/3rdparty/include/boost/mpl/eval_if.hpp + src/3rdparty/include/boost/mpl/has_xxx.hpp + src/3rdparty/include/boost/mpl/identity.hpp + src/3rdparty/include/boost/mpl/if.hpp + src/3rdparty/include/boost/mpl/int.hpp + src/3rdparty/include/boost/mpl/int_fwd.hpp + src/3rdparty/include/boost/mpl/integral_c.hpp + src/3rdparty/include/boost/mpl/integral_c_fwd.hpp + src/3rdparty/include/boost/mpl/integral_c_tag.hpp + src/3rdparty/include/boost/mpl/is_placeholder.hpp + src/3rdparty/include/boost/mpl/lambda.hpp + src/3rdparty/include/boost/mpl/lambda_fwd.hpp + src/3rdparty/include/boost/mpl/limits/arity.hpp + src/3rdparty/include/boost/mpl/logical.hpp + src/3rdparty/include/boost/mpl/next.hpp + src/3rdparty/include/boost/mpl/next_prior.hpp + src/3rdparty/include/boost/mpl/not.hpp + src/3rdparty/include/boost/mpl/or.hpp + src/3rdparty/include/boost/mpl/placeholders.hpp + src/3rdparty/include/boost/mpl/protect.hpp + src/3rdparty/include/boost/mpl/quote.hpp + src/3rdparty/include/boost/mpl/size_t.hpp + src/3rdparty/include/boost/mpl/size_t_fwd.hpp + src/3rdparty/include/boost/mpl/void.hpp + src/3rdparty/include/boost/mpl/void_fwd.hpp + src/3rdparty/include/boost/next_prior.hpp + src/3rdparty/include/boost/non_type.hpp + src/3rdparty/include/boost/noncopyable.hpp + src/3rdparty/include/boost/none.hpp + src/3rdparty/include/boost/none_t.hpp + src/3rdparty/include/boost/operators.hpp + src/3rdparty/include/boost/optional.hpp + src/3rdparty/include/boost/optional/optional.hpp + src/3rdparty/include/boost/optional/optional_fwd.hpp + src/3rdparty/include/boost/preprocessor/arithmetic/add.hpp + src/3rdparty/include/boost/preprocessor/arithmetic/dec.hpp + src/3rdparty/include/boost/preprocessor/arithmetic/inc.hpp + src/3rdparty/include/boost/preprocessor/arithmetic/sub.hpp + src/3rdparty/include/boost/preprocessor/array/data.hpp + src/3rdparty/include/boost/preprocessor/array/elem.hpp + src/3rdparty/include/boost/preprocessor/array/size.hpp + src/3rdparty/include/boost/preprocessor/cat.hpp + src/3rdparty/include/boost/preprocessor/comma_if.hpp + src/3rdparty/include/boost/preprocessor/config/config.hpp + src/3rdparty/include/boost/preprocessor/control/detail/dmc/while.hpp + src/3rdparty/include/boost/preprocessor/control/detail/edg/while.hpp + src/3rdparty/include/boost/preprocessor/control/detail/msvc/while.hpp + src/3rdparty/include/boost/preprocessor/control/detail/while.hpp + src/3rdparty/include/boost/preprocessor/control/expr_if.hpp + src/3rdparty/include/boost/preprocessor/control/expr_iif.hpp + src/3rdparty/include/boost/preprocessor/control/if.hpp + src/3rdparty/include/boost/preprocessor/control/iif.hpp + src/3rdparty/include/boost/preprocessor/control/while.hpp + src/3rdparty/include/boost/preprocessor/debug/error.hpp + src/3rdparty/include/boost/preprocessor/dec.hpp + src/3rdparty/include/boost/preprocessor/detail/auto_rec.hpp + src/3rdparty/include/boost/preprocessor/detail/check.hpp + src/3rdparty/include/boost/preprocessor/detail/dmc/auto_rec.hpp + src/3rdparty/include/boost/preprocessor/detail/is_binary.hpp + src/3rdparty/include/boost/preprocessor/empty.hpp + src/3rdparty/include/boost/preprocessor/enum.hpp + src/3rdparty/include/boost/preprocessor/enum_params.hpp + src/3rdparty/include/boost/preprocessor/enum_shifted_params.hpp + src/3rdparty/include/boost/preprocessor/expr_if.hpp + src/3rdparty/include/boost/preprocessor/facilities/empty.hpp + src/3rdparty/include/boost/preprocessor/facilities/identity.hpp + src/3rdparty/include/boost/preprocessor/identity.hpp + src/3rdparty/include/boost/preprocessor/inc.hpp + src/3rdparty/include/boost/preprocessor/iterate.hpp + src/3rdparty/include/boost/preprocessor/iteration/iterate.hpp + src/3rdparty/include/boost/preprocessor/list/adt.hpp + src/3rdparty/include/boost/preprocessor/list/append.hpp + src/3rdparty/include/boost/preprocessor/list/detail/dmc/fold_left.hpp + src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_left.hpp + src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_right.hpp + src/3rdparty/include/boost/preprocessor/list/detail/fold_left.hpp + src/3rdparty/include/boost/preprocessor/list/detail/fold_right.hpp + src/3rdparty/include/boost/preprocessor/list/fold_left.hpp + src/3rdparty/include/boost/preprocessor/list/fold_right.hpp + src/3rdparty/include/boost/preprocessor/list/for_each_i.hpp + src/3rdparty/include/boost/preprocessor/list/reverse.hpp + src/3rdparty/include/boost/preprocessor/list/transform.hpp + src/3rdparty/include/boost/preprocessor/logical/and.hpp + src/3rdparty/include/boost/preprocessor/logical/bitand.hpp + src/3rdparty/include/boost/preprocessor/logical/bool.hpp + src/3rdparty/include/boost/preprocessor/logical/compl.hpp + src/3rdparty/include/boost/preprocessor/punctuation/comma.hpp + src/3rdparty/include/boost/preprocessor/punctuation/comma_if.hpp + src/3rdparty/include/boost/preprocessor/repeat.hpp + src/3rdparty/include/boost/preprocessor/repetition/detail/dmc/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/detail/edg/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/detail/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/detail/msvc/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/enum.hpp + src/3rdparty/include/boost/preprocessor/repetition/enum_binary_params.hpp + src/3rdparty/include/boost/preprocessor/repetition/enum_params.hpp + src/3rdparty/include/boost/preprocessor/repetition/enum_shifted_params.hpp + src/3rdparty/include/boost/preprocessor/repetition/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/repeat.hpp + src/3rdparty/include/boost/preprocessor/repetition/repeat_from_to.hpp + src/3rdparty/include/boost/preprocessor/seq/detail/split.hpp + src/3rdparty/include/boost/preprocessor/seq/elem.hpp + src/3rdparty/include/boost/preprocessor/seq/enum.hpp + src/3rdparty/include/boost/preprocessor/seq/first_n.hpp + src/3rdparty/include/boost/preprocessor/seq/fold_left.hpp + src/3rdparty/include/boost/preprocessor/seq/for_each_i.hpp + src/3rdparty/include/boost/preprocessor/seq/rest_n.hpp + src/3rdparty/include/boost/preprocessor/seq/seq.hpp + src/3rdparty/include/boost/preprocessor/seq/size.hpp + src/3rdparty/include/boost/preprocessor/seq/subseq.hpp + src/3rdparty/include/boost/preprocessor/slot/detail/def.hpp + src/3rdparty/include/boost/preprocessor/slot/slot.hpp + src/3rdparty/include/boost/preprocessor/stringize.hpp + src/3rdparty/include/boost/preprocessor/tuple/eat.hpp + src/3rdparty/include/boost/preprocessor/tuple/elem.hpp + src/3rdparty/include/boost/preprocessor/tuple/rem.hpp + src/3rdparty/include/boost/preprocessor/tuple/to_list.hpp + src/3rdparty/include/boost/range/as_literal.hpp + src/3rdparty/include/boost/range/begin.hpp + src/3rdparty/include/boost/range/config.hpp + src/3rdparty/include/boost/range/const_iterator.hpp + src/3rdparty/include/boost/range/detail/as_literal.hpp + src/3rdparty/include/boost/range/detail/begin.hpp + src/3rdparty/include/boost/range/detail/common.hpp + src/3rdparty/include/boost/range/detail/const_iterator.hpp + src/3rdparty/include/boost/range/detail/detail_str.hpp + src/3rdparty/include/boost/range/detail/end.hpp + src/3rdparty/include/boost/range/detail/implementation_help.hpp + src/3rdparty/include/boost/range/detail/iterator.hpp + src/3rdparty/include/boost/range/detail/remove_extent.hpp + src/3rdparty/include/boost/range/detail/sfinae.hpp + src/3rdparty/include/boost/range/detail/size_type.hpp + src/3rdparty/include/boost/range/detail/str_types.hpp + src/3rdparty/include/boost/range/detail/vc6/end.hpp + src/3rdparty/include/boost/range/difference_type.hpp + src/3rdparty/include/boost/range/distance.hpp + src/3rdparty/include/boost/range/empty.hpp + src/3rdparty/include/boost/range/end.hpp + src/3rdparty/include/boost/range/functions.hpp + src/3rdparty/include/boost/range/iterator.hpp + src/3rdparty/include/boost/range/iterator_range.hpp + src/3rdparty/include/boost/range/mutable_iterator.hpp + src/3rdparty/include/boost/range/rbegin.hpp + src/3rdparty/include/boost/range/rend.hpp + src/3rdparty/include/boost/range/result_iterator.hpp + src/3rdparty/include/boost/range/reverse_iterator.hpp + src/3rdparty/include/boost/range/size.hpp + src/3rdparty/include/boost/range/size_type.hpp + src/3rdparty/include/boost/range/value_type.hpp + src/3rdparty/include/boost/ref.hpp + src/3rdparty/include/boost/shared_ptr.hpp + src/3rdparty/include/boost/static_assert.hpp + src/3rdparty/include/boost/thread/condition.hpp + src/3rdparty/include/boost/thread/condition_variable.hpp + src/3rdparty/include/boost/thread/detail/config.hpp + src/3rdparty/include/boost/thread/detail/move.hpp + src/3rdparty/include/boost/thread/detail/platform.hpp + src/3rdparty/include/boost/thread/detail/thread.hpp + src/3rdparty/include/boost/thread/detail/thread_heap_alloc.hpp + src/3rdparty/include/boost/thread/exceptions.hpp + src/3rdparty/include/boost/thread/locks.hpp + src/3rdparty/include/boost/thread/mutex.hpp + src/3rdparty/include/boost/thread/pthread/condition_variable.hpp + src/3rdparty/include/boost/thread/pthread/condition_variable_fwd.hpp + src/3rdparty/include/boost/thread/pthread/mutex.hpp + src/3rdparty/include/boost/thread/pthread/pthread_mutex_scoped_lock.hpp + src/3rdparty/include/boost/thread/pthread/thread_data.hpp + src/3rdparty/include/boost/thread/pthread/thread_heap_alloc.hpp + src/3rdparty/include/boost/thread/pthread/timespec.hpp + src/3rdparty/include/boost/thread/thread.hpp + src/3rdparty/include/boost/thread/thread_time.hpp + src/3rdparty/include/boost/thread/win32/basic_timed_mutex.hpp + src/3rdparty/include/boost/thread/win32/condition_variable.hpp + src/3rdparty/include/boost/thread/win32/interlocked_read.hpp + src/3rdparty/include/boost/thread/win32/mutex.hpp + src/3rdparty/include/boost/thread/win32/thread_data.hpp + src/3rdparty/include/boost/thread/win32/thread_heap_alloc.hpp + src/3rdparty/include/boost/thread/win32/thread_primitives.hpp + src/3rdparty/include/boost/thread/xtime.hpp + src/3rdparty/include/boost/throw_exception.hpp + src/3rdparty/include/boost/type.hpp + src/3rdparty/include/boost/type_traits/add_const.hpp + src/3rdparty/include/boost/type_traits/add_pointer.hpp + src/3rdparty/include/boost/type_traits/add_reference.hpp + src/3rdparty/include/boost/type_traits/alignment_of.hpp + src/3rdparty/include/boost/type_traits/arithmetic_traits.hpp + src/3rdparty/include/boost/type_traits/broken_compiler_spec.hpp + src/3rdparty/include/boost/type_traits/composite_traits.hpp + src/3rdparty/include/boost/type_traits/config.hpp + src/3rdparty/include/boost/type_traits/conversion_traits.hpp + src/3rdparty/include/boost/type_traits/detail/bool_trait_def.hpp + src/3rdparty/include/boost/type_traits/detail/bool_trait_undef.hpp + src/3rdparty/include/boost/type_traits/detail/cv_traits_impl.hpp + src/3rdparty/include/boost/type_traits/detail/false_result.hpp + src/3rdparty/include/boost/type_traits/detail/ice_and.hpp + src/3rdparty/include/boost/type_traits/detail/ice_eq.hpp + src/3rdparty/include/boost/type_traits/detail/ice_not.hpp + src/3rdparty/include/boost/type_traits/detail/ice_or.hpp + src/3rdparty/include/boost/type_traits/detail/is_function_ptr_helper.hpp + src/3rdparty/include/boost/type_traits/detail/is_function_ptr_tester.hpp + src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp + src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp + src/3rdparty/include/boost/type_traits/detail/size_t_trait_def.hpp + src/3rdparty/include/boost/type_traits/detail/size_t_trait_undef.hpp + src/3rdparty/include/boost/type_traits/detail/template_arity_spec.hpp + src/3rdparty/include/boost/type_traits/detail/type_trait_def.hpp + src/3rdparty/include/boost/type_traits/detail/type_trait_undef.hpp + src/3rdparty/include/boost/type_traits/detail/wrap.hpp + src/3rdparty/include/boost/type_traits/detail/yes_no_type.hpp + src/3rdparty/include/boost/type_traits/function_traits.hpp + src/3rdparty/include/boost/type_traits/has_nothrow_copy.hpp + src/3rdparty/include/boost/type_traits/has_trivial_copy.hpp + src/3rdparty/include/boost/type_traits/ice.hpp + src/3rdparty/include/boost/type_traits/integral_constant.hpp + src/3rdparty/include/boost/type_traits/intrinsics.hpp + src/3rdparty/include/boost/type_traits/is_abstract.hpp + src/3rdparty/include/boost/type_traits/is_arithmetic.hpp + src/3rdparty/include/boost/type_traits/is_array.hpp + src/3rdparty/include/boost/type_traits/is_base_and_derived.hpp + src/3rdparty/include/boost/type_traits/is_class.hpp + src/3rdparty/include/boost/type_traits/is_const.hpp + src/3rdparty/include/boost/type_traits/is_convertible.hpp + src/3rdparty/include/boost/type_traits/is_enum.hpp + src/3rdparty/include/boost/type_traits/is_float.hpp + src/3rdparty/include/boost/type_traits/is_function.hpp + src/3rdparty/include/boost/type_traits/is_fundamental.hpp + src/3rdparty/include/boost/type_traits/is_integral.hpp + src/3rdparty/include/boost/type_traits/is_member_function_pointer.hpp + src/3rdparty/include/boost/type_traits/is_member_pointer.hpp + src/3rdparty/include/boost/type_traits/is_pod.hpp + src/3rdparty/include/boost/type_traits/is_pointer.hpp + src/3rdparty/include/boost/type_traits/is_polymorphic.hpp + src/3rdparty/include/boost/type_traits/is_reference.hpp + src/3rdparty/include/boost/type_traits/is_same.hpp + src/3rdparty/include/boost/type_traits/is_scalar.hpp + src/3rdparty/include/boost/type_traits/is_union.hpp + src/3rdparty/include/boost/type_traits/is_void.hpp + src/3rdparty/include/boost/type_traits/is_volatile.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_bounds.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_const.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_cv.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_pointer.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_reference.hpp + src/3rdparty/include/boost/type_traits/msvc/typeof.hpp + src/3rdparty/include/boost/type_traits/remove_bounds.hpp + src/3rdparty/include/boost/type_traits/remove_const.hpp + src/3rdparty/include/boost/type_traits/remove_cv.hpp + src/3rdparty/include/boost/type_traits/remove_pointer.hpp + src/3rdparty/include/boost/type_traits/remove_reference.hpp + src/3rdparty/include/boost/type_traits/type_with_alignment.hpp + src/3rdparty/include/boost/utility.hpp + src/3rdparty/include/boost/utility/addressof.hpp + src/3rdparty/include/boost/utility/base_from_member.hpp + src/3rdparty/include/boost/utility/compare_pointees.hpp + src/3rdparty/include/boost/utility/enable_if.hpp + src/3rdparty/include/boost/version.hpp + src/3rdparty/include/boost/visit_each.hpp + src/3rdparty/include/boost/weak_ptr.hpp + src/core/audio/IBuffer.h + src/core/audio/IOutput.h + src/core/audio/IPlayer.h + src/core/config.h + src/core/filestreams/IFileStream.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o + /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOut.h + /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOutBuffer.cpp + /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOutBuffer.h + /home/urioxis/programming/musikcube/src/contrib/alsaout/pch.h + src/3rdparty/include/boost/algorithm/string/case_conv.hpp + src/3rdparty/include/boost/algorithm/string/compare.hpp + src/3rdparty/include/boost/algorithm/string/concept.hpp + src/3rdparty/include/boost/algorithm/string/config.hpp + src/3rdparty/include/boost/algorithm/string/constants.hpp + src/3rdparty/include/boost/algorithm/string/detail/case_conv.hpp + src/3rdparty/include/boost/algorithm/string/detail/find_format.hpp + src/3rdparty/include/boost/algorithm/string/detail/find_format_all.hpp + src/3rdparty/include/boost/algorithm/string/detail/find_format_store.hpp + src/3rdparty/include/boost/algorithm/string/detail/finder.hpp + src/3rdparty/include/boost/algorithm/string/detail/formatter.hpp + src/3rdparty/include/boost/algorithm/string/detail/replace_storage.hpp + src/3rdparty/include/boost/algorithm/string/detail/sequence.hpp + src/3rdparty/include/boost/algorithm/string/detail/util.hpp + src/3rdparty/include/boost/algorithm/string/find_format.hpp + src/3rdparty/include/boost/algorithm/string/finder.hpp + src/3rdparty/include/boost/algorithm/string/formatter.hpp + src/3rdparty/include/boost/algorithm/string/replace.hpp + src/3rdparty/include/boost/algorithm/string/sequence_traits.hpp + src/3rdparty/include/boost/algorithm/string/yes_no_type.hpp + src/3rdparty/include/boost/assert.hpp + src/3rdparty/include/boost/bind.hpp + src/3rdparty/include/boost/bind/arg.hpp + src/3rdparty/include/boost/bind/bind_cc.hpp + src/3rdparty/include/boost/bind/bind_mf2_cc.hpp + src/3rdparty/include/boost/bind/bind_mf_cc.hpp + src/3rdparty/include/boost/bind/bind_template.hpp + src/3rdparty/include/boost/bind/mem_fn_cc.hpp + src/3rdparty/include/boost/bind/mem_fn_template.hpp + src/3rdparty/include/boost/bind/mem_fn_vw.hpp + src/3rdparty/include/boost/bind/placeholders.hpp + src/3rdparty/include/boost/bind/storage.hpp + src/3rdparty/include/boost/call_traits.hpp + src/3rdparty/include/boost/checked_delete.hpp + src/3rdparty/include/boost/concept/assert.hpp + src/3rdparty/include/boost/concept/detail/borland.hpp + src/3rdparty/include/boost/concept/detail/concept_def.hpp + src/3rdparty/include/boost/concept/detail/concept_undef.hpp + src/3rdparty/include/boost/concept/detail/general.hpp + src/3rdparty/include/boost/concept/detail/has_constraints.hpp + src/3rdparty/include/boost/concept/detail/msvc.hpp + src/3rdparty/include/boost/concept/usage.hpp + src/3rdparty/include/boost/concept_check.hpp + src/3rdparty/include/boost/config.hpp + src/3rdparty/include/boost/config/abi_prefix.hpp + src/3rdparty/include/boost/config/abi_suffix.hpp + src/3rdparty/include/boost/config/auto_link.hpp + src/3rdparty/include/boost/config/no_tr1/functional.hpp + src/3rdparty/include/boost/config/no_tr1/memory.hpp + src/3rdparty/include/boost/config/no_tr1/utility.hpp + src/3rdparty/include/boost/config/posix_features.hpp + src/3rdparty/include/boost/config/requires_threads.hpp + src/3rdparty/include/boost/config/select_compiler_config.hpp + src/3rdparty/include/boost/config/select_platform_config.hpp + src/3rdparty/include/boost/config/select_stdlib_config.hpp + src/3rdparty/include/boost/config/suffix.hpp + src/3rdparty/include/boost/cstdint.hpp + src/3rdparty/include/boost/current_function.hpp + src/3rdparty/include/boost/date_time/adjust_functors.hpp + src/3rdparty/include/boost/date_time/c_time.hpp + src/3rdparty/include/boost/date_time/compiler_config.hpp + src/3rdparty/include/boost/date_time/constrained_value.hpp + src/3rdparty/include/boost/date_time/date.hpp + src/3rdparty/include/boost/date_time/date_clock_device.hpp + src/3rdparty/include/boost/date_time/date_defs.hpp + src/3rdparty/include/boost/date_time/date_duration.hpp + src/3rdparty/include/boost/date_time/date_duration_types.hpp + src/3rdparty/include/boost/date_time/date_facet.hpp + src/3rdparty/include/boost/date_time/date_format_simple.hpp + src/3rdparty/include/boost/date_time/date_formatting.hpp + src/3rdparty/include/boost/date_time/date_formatting_limited.hpp + src/3rdparty/include/boost/date_time/date_generator_formatter.hpp + src/3rdparty/include/boost/date_time/date_generator_parser.hpp + src/3rdparty/include/boost/date_time/date_generators.hpp + src/3rdparty/include/boost/date_time/date_iterator.hpp + src/3rdparty/include/boost/date_time/dst_rules.hpp + src/3rdparty/include/boost/date_time/filetime_functions.hpp + src/3rdparty/include/boost/date_time/format_date_parser.hpp + src/3rdparty/include/boost/date_time/gregorian/conversion.hpp + src/3rdparty/include/boost/date_time/gregorian/formatters.hpp + src/3rdparty/include/boost/date_time/gregorian/formatters_limited.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_calendar.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_date.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_day.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_day_of_year.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_duration.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_duration_types.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_month.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_weekday.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_year.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_ymd.hpp + src/3rdparty/include/boost/date_time/gregorian/gregorian_io.hpp + src/3rdparty/include/boost/date_time/gregorian/gregorian_types.hpp + src/3rdparty/include/boost/date_time/gregorian_calendar.hpp + src/3rdparty/include/boost/date_time/gregorian_calendar.ipp + src/3rdparty/include/boost/date_time/int_adapter.hpp + src/3rdparty/include/boost/date_time/iso_format.hpp + src/3rdparty/include/boost/date_time/locale_config.hpp + src/3rdparty/include/boost/date_time/microsec_time_clock.hpp + src/3rdparty/include/boost/date_time/parse_format_base.hpp + src/3rdparty/include/boost/date_time/period.hpp + src/3rdparty/include/boost/date_time/period_formatter.hpp + src/3rdparty/include/boost/date_time/period_parser.hpp + src/3rdparty/include/boost/date_time/posix_time/conversion.hpp + src/3rdparty/include/boost/date_time/posix_time/date_duration_operators.hpp + src/3rdparty/include/boost/date_time/posix_time/posix_time_config.hpp + src/3rdparty/include/boost/date_time/posix_time/posix_time_duration.hpp + src/3rdparty/include/boost/date_time/posix_time/posix_time_system.hpp + src/3rdparty/include/boost/date_time/posix_time/posix_time_types.hpp + src/3rdparty/include/boost/date_time/posix_time/ptime.hpp + src/3rdparty/include/boost/date_time/posix_time/time_period.hpp + src/3rdparty/include/boost/date_time/special_defs.hpp + src/3rdparty/include/boost/date_time/special_values_formatter.hpp + src/3rdparty/include/boost/date_time/special_values_parser.hpp + src/3rdparty/include/boost/date_time/string_convert.hpp + src/3rdparty/include/boost/date_time/string_parse_tree.hpp + src/3rdparty/include/boost/date_time/strings_from_facet.hpp + src/3rdparty/include/boost/date_time/time.hpp + src/3rdparty/include/boost/date_time/time_clock.hpp + src/3rdparty/include/boost/date_time/time_defs.hpp + src/3rdparty/include/boost/date_time/time_duration.hpp + src/3rdparty/include/boost/date_time/time_iterator.hpp + src/3rdparty/include/boost/date_time/time_resolution_traits.hpp + src/3rdparty/include/boost/date_time/time_system_counted.hpp + src/3rdparty/include/boost/date_time/time_system_split.hpp + src/3rdparty/include/boost/date_time/wrapping_int.hpp + src/3rdparty/include/boost/date_time/year_month_day.hpp + src/3rdparty/include/boost/detail/atomic_count.hpp + src/3rdparty/include/boost/detail/atomic_count_gcc.hpp + src/3rdparty/include/boost/detail/atomic_count_gcc_x86.hpp + src/3rdparty/include/boost/detail/atomic_count_pthreads.hpp + src/3rdparty/include/boost/detail/atomic_count_sync.hpp + src/3rdparty/include/boost/detail/atomic_count_win32.hpp + src/3rdparty/include/boost/detail/bad_weak_ptr.hpp + src/3rdparty/include/boost/detail/call_traits.hpp + src/3rdparty/include/boost/detail/endian.hpp + src/3rdparty/include/boost/detail/indirect_traits.hpp + src/3rdparty/include/boost/detail/interlocked.hpp + src/3rdparty/include/boost/detail/is_function_ref_tester.hpp + src/3rdparty/include/boost/detail/iterator.hpp + src/3rdparty/include/boost/detail/lcast_precision.hpp + src/3rdparty/include/boost/detail/lightweight_mutex.hpp + src/3rdparty/include/boost/detail/limits.hpp + src/3rdparty/include/boost/detail/lwm_nop.hpp + src/3rdparty/include/boost/detail/lwm_pthreads.hpp + src/3rdparty/include/boost/detail/lwm_win32_cs.hpp + src/3rdparty/include/boost/detail/ob_call_traits.hpp + src/3rdparty/include/boost/detail/quick_allocator.hpp + src/3rdparty/include/boost/detail/reference_content.hpp + src/3rdparty/include/boost/detail/shared_count.hpp + src/3rdparty/include/boost/detail/shared_ptr_nmt.hpp + src/3rdparty/include/boost/detail/sp_convertible.hpp + src/3rdparty/include/boost/detail/sp_counted_base.hpp + src/3rdparty/include/boost/detail/sp_counted_base_acc_ia64.hpp + src/3rdparty/include/boost/detail/sp_counted_base_cw_ppc.hpp + src/3rdparty/include/boost/detail/sp_counted_base_gcc_ia64.hpp + src/3rdparty/include/boost/detail/sp_counted_base_gcc_ppc.hpp + src/3rdparty/include/boost/detail/sp_counted_base_gcc_sparc.hpp + src/3rdparty/include/boost/detail/sp_counted_base_gcc_x86.hpp + src/3rdparty/include/boost/detail/sp_counted_base_nt.hpp + src/3rdparty/include/boost/detail/sp_counted_base_pt.hpp + src/3rdparty/include/boost/detail/sp_counted_base_spin.hpp + src/3rdparty/include/boost/detail/sp_counted_base_sync.hpp + src/3rdparty/include/boost/detail/sp_counted_base_w32.hpp + src/3rdparty/include/boost/detail/sp_counted_impl.hpp + src/3rdparty/include/boost/detail/sp_typeinfo.hpp + src/3rdparty/include/boost/detail/spinlock.hpp + src/3rdparty/include/boost/detail/spinlock_gcc_arm.hpp + src/3rdparty/include/boost/detail/spinlock_nt.hpp + src/3rdparty/include/boost/detail/spinlock_pool.hpp + src/3rdparty/include/boost/detail/spinlock_pt.hpp + src/3rdparty/include/boost/detail/spinlock_sync.hpp + src/3rdparty/include/boost/detail/spinlock_w32.hpp + src/3rdparty/include/boost/detail/workaround.hpp + src/3rdparty/include/boost/detail/yield_k.hpp + src/3rdparty/include/boost/enable_shared_from_this.hpp + src/3rdparty/include/boost/exception/detail/cloning_base.hpp + src/3rdparty/include/boost/exception/detail/counted_base.hpp + src/3rdparty/include/boost/exception/enable_current_exception.hpp + src/3rdparty/include/boost/exception/enable_error_info.hpp + src/3rdparty/include/boost/exception/exception.hpp + src/3rdparty/include/boost/function.hpp + src/3rdparty/include/boost/function/detail/maybe_include.hpp + src/3rdparty/include/boost/function/detail/prologue.hpp + src/3rdparty/include/boost/function/function0.hpp + src/3rdparty/include/boost/function/function1.hpp + src/3rdparty/include/boost/function/function10.hpp + src/3rdparty/include/boost/function/function2.hpp + src/3rdparty/include/boost/function/function3.hpp + src/3rdparty/include/boost/function/function4.hpp + src/3rdparty/include/boost/function/function5.hpp + src/3rdparty/include/boost/function/function6.hpp + src/3rdparty/include/boost/function/function7.hpp + src/3rdparty/include/boost/function/function8.hpp + src/3rdparty/include/boost/function/function9.hpp + src/3rdparty/include/boost/function/function_base.hpp + src/3rdparty/include/boost/function/function_template.hpp + src/3rdparty/include/boost/function_equal.hpp + src/3rdparty/include/boost/get_pointer.hpp + src/3rdparty/include/boost/implicit_cast.hpp + src/3rdparty/include/boost/integer_traits.hpp + src/3rdparty/include/boost/intrusive_ptr.hpp + src/3rdparty/include/boost/io/ios_state.hpp + src/3rdparty/include/boost/io_fwd.hpp + src/3rdparty/include/boost/is_placeholder.hpp + src/3rdparty/include/boost/iterator.hpp + src/3rdparty/include/boost/iterator/detail/config_def.hpp + src/3rdparty/include/boost/iterator/detail/config_undef.hpp + src/3rdparty/include/boost/iterator/detail/enable_if.hpp + src/3rdparty/include/boost/iterator/detail/facade_iterator_category.hpp + src/3rdparty/include/boost/iterator/interoperable.hpp + src/3rdparty/include/boost/iterator/iterator_adaptor.hpp + src/3rdparty/include/boost/iterator/iterator_categories.hpp + src/3rdparty/include/boost/iterator/iterator_facade.hpp + src/3rdparty/include/boost/iterator/iterator_traits.hpp + src/3rdparty/include/boost/iterator/reverse_iterator.hpp + src/3rdparty/include/boost/iterator/transform_iterator.hpp + src/3rdparty/include/boost/lexical_cast.hpp + src/3rdparty/include/boost/limits.hpp + src/3rdparty/include/boost/mem_fn.hpp + src/3rdparty/include/boost/memory_order.hpp + src/3rdparty/include/boost/mpl/always.hpp + src/3rdparty/include/boost/mpl/and.hpp + src/3rdparty/include/boost/mpl/apply.hpp + src/3rdparty/include/boost/mpl/apply_fwd.hpp + src/3rdparty/include/boost/mpl/apply_wrap.hpp + src/3rdparty/include/boost/mpl/arg.hpp + src/3rdparty/include/boost/mpl/arg_fwd.hpp + src/3rdparty/include/boost/mpl/assert.hpp + src/3rdparty/include/boost/mpl/aux_/adl_barrier.hpp + src/3rdparty/include/boost/mpl/aux_/arg_typedef.hpp + src/3rdparty/include/boost/mpl/aux_/arity.hpp + src/3rdparty/include/boost/mpl/aux_/arity_spec.hpp + src/3rdparty/include/boost/mpl/aux_/common_name_wknd.hpp + src/3rdparty/include/boost/mpl/aux_/config/adl.hpp + src/3rdparty/include/boost/mpl/aux_/config/arrays.hpp + src/3rdparty/include/boost/mpl/aux_/config/bind.hpp + src/3rdparty/include/boost/mpl/aux_/config/compiler.hpp + src/3rdparty/include/boost/mpl/aux_/config/ctps.hpp + src/3rdparty/include/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp + src/3rdparty/include/boost/mpl/aux_/config/dtp.hpp + src/3rdparty/include/boost/mpl/aux_/config/eti.hpp + src/3rdparty/include/boost/mpl/aux_/config/gcc.hpp + src/3rdparty/include/boost/mpl/aux_/config/has_apply.hpp + src/3rdparty/include/boost/mpl/aux_/config/has_xxx.hpp + src/3rdparty/include/boost/mpl/aux_/config/integral.hpp + src/3rdparty/include/boost/mpl/aux_/config/intel.hpp + src/3rdparty/include/boost/mpl/aux_/config/lambda.hpp + src/3rdparty/include/boost/mpl/aux_/config/msvc.hpp + src/3rdparty/include/boost/mpl/aux_/config/msvc_typename.hpp + src/3rdparty/include/boost/mpl/aux_/config/nttp.hpp + src/3rdparty/include/boost/mpl/aux_/config/overload_resolution.hpp + src/3rdparty/include/boost/mpl/aux_/config/pp_counter.hpp + src/3rdparty/include/boost/mpl/aux_/config/preprocessor.hpp + src/3rdparty/include/boost/mpl/aux_/config/static_constant.hpp + src/3rdparty/include/boost/mpl/aux_/config/ttp.hpp + src/3rdparty/include/boost/mpl/aux_/config/use_preprocessed.hpp + src/3rdparty/include/boost/mpl/aux_/config/workaround.hpp + src/3rdparty/include/boost/mpl/aux_/count_args.hpp + src/3rdparty/include/boost/mpl/aux_/full_lambda.hpp + src/3rdparty/include/boost/mpl/aux_/has_apply.hpp + src/3rdparty/include/boost/mpl/aux_/has_rebind.hpp + src/3rdparty/include/boost/mpl/aux_/has_type.hpp + src/3rdparty/include/boost/mpl/aux_/include_preprocessed.hpp + src/3rdparty/include/boost/mpl/aux_/integral_wrapper.hpp + src/3rdparty/include/boost/mpl/aux_/lambda_arity_param.hpp + src/3rdparty/include/boost/mpl/aux_/lambda_no_ctps.hpp + src/3rdparty/include/boost/mpl/aux_/lambda_support.hpp + src/3rdparty/include/boost/mpl/aux_/logical_op.hpp + src/3rdparty/include/boost/mpl/aux_/msvc_dtw.hpp + src/3rdparty/include/boost/mpl/aux_/msvc_is_class.hpp + src/3rdparty/include/boost/mpl/aux_/msvc_never_true.hpp + src/3rdparty/include/boost/mpl/aux_/na.hpp + src/3rdparty/include/boost/mpl/aux_/na_assert.hpp + src/3rdparty/include/boost/mpl/aux_/na_fwd.hpp + src/3rdparty/include/boost/mpl/aux_/na_spec.hpp + src/3rdparty/include/boost/mpl/aux_/nested_type_wknd.hpp + src/3rdparty/include/boost/mpl/aux_/nttp_decl.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/add.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/def_params_tail.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/default_params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/enum.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/ext_params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/filter_params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/partial_spec_params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/range.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/repeat.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/sub.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/tuple.hpp + src/3rdparty/include/boost/mpl/aux_/static_cast.hpp + src/3rdparty/include/boost/mpl/aux_/template_arity.hpp + src/3rdparty/include/boost/mpl/aux_/template_arity_fwd.hpp + src/3rdparty/include/boost/mpl/aux_/type_wrapper.hpp + src/3rdparty/include/boost/mpl/aux_/value_wknd.hpp + src/3rdparty/include/boost/mpl/aux_/yes_no.hpp + src/3rdparty/include/boost/mpl/bind.hpp + src/3rdparty/include/boost/mpl/bind_fwd.hpp + src/3rdparty/include/boost/mpl/bool.hpp + src/3rdparty/include/boost/mpl/bool_fwd.hpp + src/3rdparty/include/boost/mpl/eval_if.hpp + src/3rdparty/include/boost/mpl/has_xxx.hpp + src/3rdparty/include/boost/mpl/identity.hpp + src/3rdparty/include/boost/mpl/if.hpp + src/3rdparty/include/boost/mpl/int.hpp + src/3rdparty/include/boost/mpl/int_fwd.hpp + src/3rdparty/include/boost/mpl/integral_c.hpp + src/3rdparty/include/boost/mpl/integral_c_fwd.hpp + src/3rdparty/include/boost/mpl/integral_c_tag.hpp + src/3rdparty/include/boost/mpl/is_placeholder.hpp + src/3rdparty/include/boost/mpl/lambda.hpp + src/3rdparty/include/boost/mpl/lambda_fwd.hpp + src/3rdparty/include/boost/mpl/limits/arity.hpp + src/3rdparty/include/boost/mpl/logical.hpp + src/3rdparty/include/boost/mpl/next.hpp + src/3rdparty/include/boost/mpl/next_prior.hpp + src/3rdparty/include/boost/mpl/not.hpp + src/3rdparty/include/boost/mpl/or.hpp + src/3rdparty/include/boost/mpl/placeholders.hpp + src/3rdparty/include/boost/mpl/protect.hpp + src/3rdparty/include/boost/mpl/quote.hpp + src/3rdparty/include/boost/mpl/size_t.hpp + src/3rdparty/include/boost/mpl/size_t_fwd.hpp + src/3rdparty/include/boost/mpl/void.hpp + src/3rdparty/include/boost/mpl/void_fwd.hpp + src/3rdparty/include/boost/next_prior.hpp + src/3rdparty/include/boost/non_type.hpp + src/3rdparty/include/boost/noncopyable.hpp + src/3rdparty/include/boost/none.hpp + src/3rdparty/include/boost/none_t.hpp + src/3rdparty/include/boost/operators.hpp + src/3rdparty/include/boost/optional.hpp + src/3rdparty/include/boost/optional/optional.hpp + src/3rdparty/include/boost/optional/optional_fwd.hpp + src/3rdparty/include/boost/preprocessor/arithmetic/add.hpp + src/3rdparty/include/boost/preprocessor/arithmetic/dec.hpp + src/3rdparty/include/boost/preprocessor/arithmetic/inc.hpp + src/3rdparty/include/boost/preprocessor/arithmetic/sub.hpp + src/3rdparty/include/boost/preprocessor/array/data.hpp + src/3rdparty/include/boost/preprocessor/array/elem.hpp + src/3rdparty/include/boost/preprocessor/array/size.hpp + src/3rdparty/include/boost/preprocessor/cat.hpp + src/3rdparty/include/boost/preprocessor/comma_if.hpp + src/3rdparty/include/boost/preprocessor/config/config.hpp + src/3rdparty/include/boost/preprocessor/control/detail/dmc/while.hpp + src/3rdparty/include/boost/preprocessor/control/detail/edg/while.hpp + src/3rdparty/include/boost/preprocessor/control/detail/msvc/while.hpp + src/3rdparty/include/boost/preprocessor/control/detail/while.hpp + src/3rdparty/include/boost/preprocessor/control/expr_if.hpp + src/3rdparty/include/boost/preprocessor/control/expr_iif.hpp + src/3rdparty/include/boost/preprocessor/control/if.hpp + src/3rdparty/include/boost/preprocessor/control/iif.hpp + src/3rdparty/include/boost/preprocessor/control/while.hpp + src/3rdparty/include/boost/preprocessor/debug/error.hpp + src/3rdparty/include/boost/preprocessor/dec.hpp + src/3rdparty/include/boost/preprocessor/detail/auto_rec.hpp + src/3rdparty/include/boost/preprocessor/detail/check.hpp + src/3rdparty/include/boost/preprocessor/detail/dmc/auto_rec.hpp + src/3rdparty/include/boost/preprocessor/detail/is_binary.hpp + src/3rdparty/include/boost/preprocessor/empty.hpp + src/3rdparty/include/boost/preprocessor/enum.hpp + src/3rdparty/include/boost/preprocessor/enum_params.hpp + src/3rdparty/include/boost/preprocessor/enum_shifted_params.hpp + src/3rdparty/include/boost/preprocessor/expr_if.hpp + src/3rdparty/include/boost/preprocessor/facilities/empty.hpp + src/3rdparty/include/boost/preprocessor/facilities/identity.hpp + src/3rdparty/include/boost/preprocessor/identity.hpp + src/3rdparty/include/boost/preprocessor/inc.hpp + src/3rdparty/include/boost/preprocessor/iterate.hpp + src/3rdparty/include/boost/preprocessor/iteration/iterate.hpp + src/3rdparty/include/boost/preprocessor/list/adt.hpp + src/3rdparty/include/boost/preprocessor/list/append.hpp + src/3rdparty/include/boost/preprocessor/list/detail/dmc/fold_left.hpp + src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_left.hpp + src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_right.hpp + src/3rdparty/include/boost/preprocessor/list/detail/fold_left.hpp + src/3rdparty/include/boost/preprocessor/list/detail/fold_right.hpp + src/3rdparty/include/boost/preprocessor/list/fold_left.hpp + src/3rdparty/include/boost/preprocessor/list/fold_right.hpp + src/3rdparty/include/boost/preprocessor/list/for_each_i.hpp + src/3rdparty/include/boost/preprocessor/list/reverse.hpp + src/3rdparty/include/boost/preprocessor/list/transform.hpp + src/3rdparty/include/boost/preprocessor/logical/and.hpp + src/3rdparty/include/boost/preprocessor/logical/bitand.hpp + src/3rdparty/include/boost/preprocessor/logical/bool.hpp + src/3rdparty/include/boost/preprocessor/logical/compl.hpp + src/3rdparty/include/boost/preprocessor/punctuation/comma.hpp + src/3rdparty/include/boost/preprocessor/punctuation/comma_if.hpp + src/3rdparty/include/boost/preprocessor/repeat.hpp + src/3rdparty/include/boost/preprocessor/repetition/detail/dmc/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/detail/edg/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/detail/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/detail/msvc/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/enum.hpp + src/3rdparty/include/boost/preprocessor/repetition/enum_binary_params.hpp + src/3rdparty/include/boost/preprocessor/repetition/enum_params.hpp + src/3rdparty/include/boost/preprocessor/repetition/enum_shifted_params.hpp + src/3rdparty/include/boost/preprocessor/repetition/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/repeat.hpp + src/3rdparty/include/boost/preprocessor/repetition/repeat_from_to.hpp + src/3rdparty/include/boost/preprocessor/seq/detail/split.hpp + src/3rdparty/include/boost/preprocessor/seq/elem.hpp + src/3rdparty/include/boost/preprocessor/seq/enum.hpp + src/3rdparty/include/boost/preprocessor/seq/first_n.hpp + src/3rdparty/include/boost/preprocessor/seq/fold_left.hpp + src/3rdparty/include/boost/preprocessor/seq/for_each_i.hpp + src/3rdparty/include/boost/preprocessor/seq/rest_n.hpp + src/3rdparty/include/boost/preprocessor/seq/seq.hpp + src/3rdparty/include/boost/preprocessor/seq/size.hpp + src/3rdparty/include/boost/preprocessor/seq/subseq.hpp + src/3rdparty/include/boost/preprocessor/slot/detail/def.hpp + src/3rdparty/include/boost/preprocessor/slot/slot.hpp + src/3rdparty/include/boost/preprocessor/stringize.hpp + src/3rdparty/include/boost/preprocessor/tuple/eat.hpp + src/3rdparty/include/boost/preprocessor/tuple/elem.hpp + src/3rdparty/include/boost/preprocessor/tuple/rem.hpp + src/3rdparty/include/boost/preprocessor/tuple/to_list.hpp + src/3rdparty/include/boost/range/as_literal.hpp + src/3rdparty/include/boost/range/begin.hpp + src/3rdparty/include/boost/range/config.hpp + src/3rdparty/include/boost/range/const_iterator.hpp + src/3rdparty/include/boost/range/detail/as_literal.hpp + src/3rdparty/include/boost/range/detail/begin.hpp + src/3rdparty/include/boost/range/detail/common.hpp + src/3rdparty/include/boost/range/detail/const_iterator.hpp + src/3rdparty/include/boost/range/detail/detail_str.hpp + src/3rdparty/include/boost/range/detail/end.hpp + src/3rdparty/include/boost/range/detail/implementation_help.hpp + src/3rdparty/include/boost/range/detail/iterator.hpp + src/3rdparty/include/boost/range/detail/remove_extent.hpp + src/3rdparty/include/boost/range/detail/sfinae.hpp + src/3rdparty/include/boost/range/detail/size_type.hpp + src/3rdparty/include/boost/range/detail/str_types.hpp + src/3rdparty/include/boost/range/detail/vc6/end.hpp + src/3rdparty/include/boost/range/difference_type.hpp + src/3rdparty/include/boost/range/distance.hpp + src/3rdparty/include/boost/range/empty.hpp + src/3rdparty/include/boost/range/end.hpp + src/3rdparty/include/boost/range/functions.hpp + src/3rdparty/include/boost/range/iterator.hpp + src/3rdparty/include/boost/range/iterator_range.hpp + src/3rdparty/include/boost/range/mutable_iterator.hpp + src/3rdparty/include/boost/range/rbegin.hpp + src/3rdparty/include/boost/range/rend.hpp + src/3rdparty/include/boost/range/result_iterator.hpp + src/3rdparty/include/boost/range/reverse_iterator.hpp + src/3rdparty/include/boost/range/size.hpp + src/3rdparty/include/boost/range/size_type.hpp + src/3rdparty/include/boost/range/value_type.hpp + src/3rdparty/include/boost/ref.hpp + src/3rdparty/include/boost/shared_ptr.hpp + src/3rdparty/include/boost/static_assert.hpp + src/3rdparty/include/boost/thread/condition.hpp + src/3rdparty/include/boost/thread/condition_variable.hpp + src/3rdparty/include/boost/thread/detail/config.hpp + src/3rdparty/include/boost/thread/detail/move.hpp + src/3rdparty/include/boost/thread/detail/platform.hpp + src/3rdparty/include/boost/thread/detail/thread.hpp + src/3rdparty/include/boost/thread/detail/thread_heap_alloc.hpp + src/3rdparty/include/boost/thread/exceptions.hpp + src/3rdparty/include/boost/thread/locks.hpp + src/3rdparty/include/boost/thread/mutex.hpp + src/3rdparty/include/boost/thread/pthread/condition_variable.hpp + src/3rdparty/include/boost/thread/pthread/condition_variable_fwd.hpp + src/3rdparty/include/boost/thread/pthread/mutex.hpp + src/3rdparty/include/boost/thread/pthread/pthread_mutex_scoped_lock.hpp + src/3rdparty/include/boost/thread/pthread/thread_data.hpp + src/3rdparty/include/boost/thread/pthread/thread_heap_alloc.hpp + src/3rdparty/include/boost/thread/pthread/timespec.hpp + src/3rdparty/include/boost/thread/thread.hpp + src/3rdparty/include/boost/thread/thread_time.hpp + src/3rdparty/include/boost/thread/win32/basic_timed_mutex.hpp + src/3rdparty/include/boost/thread/win32/condition_variable.hpp + src/3rdparty/include/boost/thread/win32/interlocked_read.hpp + src/3rdparty/include/boost/thread/win32/mutex.hpp + src/3rdparty/include/boost/thread/win32/thread_data.hpp + src/3rdparty/include/boost/thread/win32/thread_heap_alloc.hpp + src/3rdparty/include/boost/thread/win32/thread_primitives.hpp + src/3rdparty/include/boost/thread/xtime.hpp + src/3rdparty/include/boost/throw_exception.hpp + src/3rdparty/include/boost/type.hpp + src/3rdparty/include/boost/type_traits/add_const.hpp + src/3rdparty/include/boost/type_traits/add_pointer.hpp + src/3rdparty/include/boost/type_traits/add_reference.hpp + src/3rdparty/include/boost/type_traits/alignment_of.hpp + src/3rdparty/include/boost/type_traits/arithmetic_traits.hpp + src/3rdparty/include/boost/type_traits/broken_compiler_spec.hpp + src/3rdparty/include/boost/type_traits/composite_traits.hpp + src/3rdparty/include/boost/type_traits/config.hpp + src/3rdparty/include/boost/type_traits/conversion_traits.hpp + src/3rdparty/include/boost/type_traits/detail/bool_trait_def.hpp + src/3rdparty/include/boost/type_traits/detail/bool_trait_undef.hpp + src/3rdparty/include/boost/type_traits/detail/cv_traits_impl.hpp + src/3rdparty/include/boost/type_traits/detail/false_result.hpp + src/3rdparty/include/boost/type_traits/detail/ice_and.hpp + src/3rdparty/include/boost/type_traits/detail/ice_eq.hpp + src/3rdparty/include/boost/type_traits/detail/ice_not.hpp + src/3rdparty/include/boost/type_traits/detail/ice_or.hpp + src/3rdparty/include/boost/type_traits/detail/is_function_ptr_helper.hpp + src/3rdparty/include/boost/type_traits/detail/is_function_ptr_tester.hpp + src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp + src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp + src/3rdparty/include/boost/type_traits/detail/size_t_trait_def.hpp + src/3rdparty/include/boost/type_traits/detail/size_t_trait_undef.hpp + src/3rdparty/include/boost/type_traits/detail/template_arity_spec.hpp + src/3rdparty/include/boost/type_traits/detail/type_trait_def.hpp + src/3rdparty/include/boost/type_traits/detail/type_trait_undef.hpp + src/3rdparty/include/boost/type_traits/detail/wrap.hpp + src/3rdparty/include/boost/type_traits/detail/yes_no_type.hpp + src/3rdparty/include/boost/type_traits/function_traits.hpp + src/3rdparty/include/boost/type_traits/has_nothrow_copy.hpp + src/3rdparty/include/boost/type_traits/has_trivial_copy.hpp + src/3rdparty/include/boost/type_traits/ice.hpp + src/3rdparty/include/boost/type_traits/integral_constant.hpp + src/3rdparty/include/boost/type_traits/intrinsics.hpp + src/3rdparty/include/boost/type_traits/is_abstract.hpp + src/3rdparty/include/boost/type_traits/is_arithmetic.hpp + src/3rdparty/include/boost/type_traits/is_array.hpp + src/3rdparty/include/boost/type_traits/is_base_and_derived.hpp + src/3rdparty/include/boost/type_traits/is_class.hpp + src/3rdparty/include/boost/type_traits/is_const.hpp + src/3rdparty/include/boost/type_traits/is_convertible.hpp + src/3rdparty/include/boost/type_traits/is_enum.hpp + src/3rdparty/include/boost/type_traits/is_float.hpp + src/3rdparty/include/boost/type_traits/is_function.hpp + src/3rdparty/include/boost/type_traits/is_fundamental.hpp + src/3rdparty/include/boost/type_traits/is_integral.hpp + src/3rdparty/include/boost/type_traits/is_member_function_pointer.hpp + src/3rdparty/include/boost/type_traits/is_member_pointer.hpp + src/3rdparty/include/boost/type_traits/is_pod.hpp + src/3rdparty/include/boost/type_traits/is_pointer.hpp + src/3rdparty/include/boost/type_traits/is_polymorphic.hpp + src/3rdparty/include/boost/type_traits/is_reference.hpp + src/3rdparty/include/boost/type_traits/is_same.hpp + src/3rdparty/include/boost/type_traits/is_scalar.hpp + src/3rdparty/include/boost/type_traits/is_union.hpp + src/3rdparty/include/boost/type_traits/is_void.hpp + src/3rdparty/include/boost/type_traits/is_volatile.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_bounds.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_const.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_cv.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_pointer.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_reference.hpp + src/3rdparty/include/boost/type_traits/msvc/typeof.hpp + src/3rdparty/include/boost/type_traits/remove_bounds.hpp + src/3rdparty/include/boost/type_traits/remove_const.hpp + src/3rdparty/include/boost/type_traits/remove_cv.hpp + src/3rdparty/include/boost/type_traits/remove_pointer.hpp + src/3rdparty/include/boost/type_traits/remove_reference.hpp + src/3rdparty/include/boost/type_traits/type_with_alignment.hpp + src/3rdparty/include/boost/utility.hpp + src/3rdparty/include/boost/utility/addressof.hpp + src/3rdparty/include/boost/utility/base_from_member.hpp + src/3rdparty/include/boost/utility/compare_pointees.hpp + src/3rdparty/include/boost/utility/enable_if.hpp + src/3rdparty/include/boost/version.hpp + src/3rdparty/include/boost/visit_each.hpp + src/3rdparty/include/boost/weak_ptr.hpp + src/core/audio/IBuffer.h + src/core/audio/IOutput.h + src/core/audio/IPlayer.h + src/core/config.h + src/core/filestreams/IFileStream.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o + /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOut.h + /home/urioxis/programming/musikcube/src/contrib/alsaout/AlsaOutBuffer.h + /home/urioxis/programming/musikcube/src/contrib/alsaout/alsaout_plugin.cpp + /home/urioxis/programming/musikcube/src/contrib/alsaout/pch.h + src/3rdparty/include/boost/algorithm/string/case_conv.hpp + src/3rdparty/include/boost/algorithm/string/compare.hpp + src/3rdparty/include/boost/algorithm/string/concept.hpp + src/3rdparty/include/boost/algorithm/string/config.hpp + src/3rdparty/include/boost/algorithm/string/constants.hpp + src/3rdparty/include/boost/algorithm/string/detail/case_conv.hpp + src/3rdparty/include/boost/algorithm/string/detail/find_format.hpp + src/3rdparty/include/boost/algorithm/string/detail/find_format_all.hpp + src/3rdparty/include/boost/algorithm/string/detail/find_format_store.hpp + src/3rdparty/include/boost/algorithm/string/detail/finder.hpp + src/3rdparty/include/boost/algorithm/string/detail/formatter.hpp + src/3rdparty/include/boost/algorithm/string/detail/replace_storage.hpp + src/3rdparty/include/boost/algorithm/string/detail/sequence.hpp + src/3rdparty/include/boost/algorithm/string/detail/util.hpp + src/3rdparty/include/boost/algorithm/string/find_format.hpp + src/3rdparty/include/boost/algorithm/string/finder.hpp + src/3rdparty/include/boost/algorithm/string/formatter.hpp + src/3rdparty/include/boost/algorithm/string/replace.hpp + src/3rdparty/include/boost/algorithm/string/sequence_traits.hpp + src/3rdparty/include/boost/algorithm/string/yes_no_type.hpp + src/3rdparty/include/boost/assert.hpp + src/3rdparty/include/boost/bind.hpp + src/3rdparty/include/boost/bind/arg.hpp + src/3rdparty/include/boost/bind/bind_cc.hpp + src/3rdparty/include/boost/bind/bind_mf2_cc.hpp + src/3rdparty/include/boost/bind/bind_mf_cc.hpp + src/3rdparty/include/boost/bind/bind_template.hpp + src/3rdparty/include/boost/bind/mem_fn_cc.hpp + src/3rdparty/include/boost/bind/mem_fn_template.hpp + src/3rdparty/include/boost/bind/mem_fn_vw.hpp + src/3rdparty/include/boost/bind/placeholders.hpp + src/3rdparty/include/boost/bind/storage.hpp + src/3rdparty/include/boost/call_traits.hpp + src/3rdparty/include/boost/checked_delete.hpp + src/3rdparty/include/boost/concept/assert.hpp + src/3rdparty/include/boost/concept/detail/borland.hpp + src/3rdparty/include/boost/concept/detail/concept_def.hpp + src/3rdparty/include/boost/concept/detail/concept_undef.hpp + src/3rdparty/include/boost/concept/detail/general.hpp + src/3rdparty/include/boost/concept/detail/has_constraints.hpp + src/3rdparty/include/boost/concept/detail/msvc.hpp + src/3rdparty/include/boost/concept/usage.hpp + src/3rdparty/include/boost/concept_check.hpp + src/3rdparty/include/boost/config.hpp + src/3rdparty/include/boost/config/abi_prefix.hpp + src/3rdparty/include/boost/config/abi_suffix.hpp + src/3rdparty/include/boost/config/auto_link.hpp + src/3rdparty/include/boost/config/no_tr1/functional.hpp + src/3rdparty/include/boost/config/no_tr1/memory.hpp + src/3rdparty/include/boost/config/no_tr1/utility.hpp + src/3rdparty/include/boost/config/posix_features.hpp + src/3rdparty/include/boost/config/requires_threads.hpp + src/3rdparty/include/boost/config/select_compiler_config.hpp + src/3rdparty/include/boost/config/select_platform_config.hpp + src/3rdparty/include/boost/config/select_stdlib_config.hpp + src/3rdparty/include/boost/config/suffix.hpp + src/3rdparty/include/boost/cstdint.hpp + src/3rdparty/include/boost/current_function.hpp + src/3rdparty/include/boost/date_time/adjust_functors.hpp + src/3rdparty/include/boost/date_time/c_time.hpp + src/3rdparty/include/boost/date_time/compiler_config.hpp + src/3rdparty/include/boost/date_time/constrained_value.hpp + src/3rdparty/include/boost/date_time/date.hpp + src/3rdparty/include/boost/date_time/date_clock_device.hpp + src/3rdparty/include/boost/date_time/date_defs.hpp + src/3rdparty/include/boost/date_time/date_duration.hpp + src/3rdparty/include/boost/date_time/date_duration_types.hpp + src/3rdparty/include/boost/date_time/date_facet.hpp + src/3rdparty/include/boost/date_time/date_format_simple.hpp + src/3rdparty/include/boost/date_time/date_formatting.hpp + src/3rdparty/include/boost/date_time/date_formatting_limited.hpp + src/3rdparty/include/boost/date_time/date_generator_formatter.hpp + src/3rdparty/include/boost/date_time/date_generator_parser.hpp + src/3rdparty/include/boost/date_time/date_generators.hpp + src/3rdparty/include/boost/date_time/date_iterator.hpp + src/3rdparty/include/boost/date_time/dst_rules.hpp + src/3rdparty/include/boost/date_time/filetime_functions.hpp + src/3rdparty/include/boost/date_time/format_date_parser.hpp + src/3rdparty/include/boost/date_time/gregorian/conversion.hpp + src/3rdparty/include/boost/date_time/gregorian/formatters.hpp + src/3rdparty/include/boost/date_time/gregorian/formatters_limited.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_calendar.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_date.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_day.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_day_of_year.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_duration.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_duration_types.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_month.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_weekday.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_year.hpp + src/3rdparty/include/boost/date_time/gregorian/greg_ymd.hpp + src/3rdparty/include/boost/date_time/gregorian/gregorian_io.hpp + src/3rdparty/include/boost/date_time/gregorian/gregorian_types.hpp + src/3rdparty/include/boost/date_time/gregorian_calendar.hpp + src/3rdparty/include/boost/date_time/gregorian_calendar.ipp + src/3rdparty/include/boost/date_time/int_adapter.hpp + src/3rdparty/include/boost/date_time/iso_format.hpp + src/3rdparty/include/boost/date_time/locale_config.hpp + src/3rdparty/include/boost/date_time/microsec_time_clock.hpp + src/3rdparty/include/boost/date_time/parse_format_base.hpp + src/3rdparty/include/boost/date_time/period.hpp + src/3rdparty/include/boost/date_time/period_formatter.hpp + src/3rdparty/include/boost/date_time/period_parser.hpp + src/3rdparty/include/boost/date_time/posix_time/conversion.hpp + src/3rdparty/include/boost/date_time/posix_time/date_duration_operators.hpp + src/3rdparty/include/boost/date_time/posix_time/posix_time_config.hpp + src/3rdparty/include/boost/date_time/posix_time/posix_time_duration.hpp + src/3rdparty/include/boost/date_time/posix_time/posix_time_system.hpp + src/3rdparty/include/boost/date_time/posix_time/posix_time_types.hpp + src/3rdparty/include/boost/date_time/posix_time/ptime.hpp + src/3rdparty/include/boost/date_time/posix_time/time_period.hpp + src/3rdparty/include/boost/date_time/special_defs.hpp + src/3rdparty/include/boost/date_time/special_values_formatter.hpp + src/3rdparty/include/boost/date_time/special_values_parser.hpp + src/3rdparty/include/boost/date_time/string_convert.hpp + src/3rdparty/include/boost/date_time/string_parse_tree.hpp + src/3rdparty/include/boost/date_time/strings_from_facet.hpp + src/3rdparty/include/boost/date_time/time.hpp + src/3rdparty/include/boost/date_time/time_clock.hpp + src/3rdparty/include/boost/date_time/time_defs.hpp + src/3rdparty/include/boost/date_time/time_duration.hpp + src/3rdparty/include/boost/date_time/time_iterator.hpp + src/3rdparty/include/boost/date_time/time_resolution_traits.hpp + src/3rdparty/include/boost/date_time/time_system_counted.hpp + src/3rdparty/include/boost/date_time/time_system_split.hpp + src/3rdparty/include/boost/date_time/wrapping_int.hpp + src/3rdparty/include/boost/date_time/year_month_day.hpp + src/3rdparty/include/boost/detail/atomic_count.hpp + src/3rdparty/include/boost/detail/atomic_count_gcc.hpp + src/3rdparty/include/boost/detail/atomic_count_gcc_x86.hpp + src/3rdparty/include/boost/detail/atomic_count_pthreads.hpp + src/3rdparty/include/boost/detail/atomic_count_sync.hpp + src/3rdparty/include/boost/detail/atomic_count_win32.hpp + src/3rdparty/include/boost/detail/bad_weak_ptr.hpp + src/3rdparty/include/boost/detail/call_traits.hpp + src/3rdparty/include/boost/detail/endian.hpp + src/3rdparty/include/boost/detail/indirect_traits.hpp + src/3rdparty/include/boost/detail/interlocked.hpp + src/3rdparty/include/boost/detail/is_function_ref_tester.hpp + src/3rdparty/include/boost/detail/iterator.hpp + src/3rdparty/include/boost/detail/lcast_precision.hpp + src/3rdparty/include/boost/detail/lightweight_mutex.hpp + src/3rdparty/include/boost/detail/limits.hpp + src/3rdparty/include/boost/detail/lwm_nop.hpp + src/3rdparty/include/boost/detail/lwm_pthreads.hpp + src/3rdparty/include/boost/detail/lwm_win32_cs.hpp + src/3rdparty/include/boost/detail/ob_call_traits.hpp + src/3rdparty/include/boost/detail/quick_allocator.hpp + src/3rdparty/include/boost/detail/reference_content.hpp + src/3rdparty/include/boost/detail/shared_count.hpp + src/3rdparty/include/boost/detail/shared_ptr_nmt.hpp + src/3rdparty/include/boost/detail/sp_convertible.hpp + src/3rdparty/include/boost/detail/sp_counted_base.hpp + src/3rdparty/include/boost/detail/sp_counted_base_acc_ia64.hpp + src/3rdparty/include/boost/detail/sp_counted_base_cw_ppc.hpp + src/3rdparty/include/boost/detail/sp_counted_base_gcc_ia64.hpp + src/3rdparty/include/boost/detail/sp_counted_base_gcc_ppc.hpp + src/3rdparty/include/boost/detail/sp_counted_base_gcc_sparc.hpp + src/3rdparty/include/boost/detail/sp_counted_base_gcc_x86.hpp + src/3rdparty/include/boost/detail/sp_counted_base_nt.hpp + src/3rdparty/include/boost/detail/sp_counted_base_pt.hpp + src/3rdparty/include/boost/detail/sp_counted_base_spin.hpp + src/3rdparty/include/boost/detail/sp_counted_base_sync.hpp + src/3rdparty/include/boost/detail/sp_counted_base_w32.hpp + src/3rdparty/include/boost/detail/sp_counted_impl.hpp + src/3rdparty/include/boost/detail/sp_typeinfo.hpp + src/3rdparty/include/boost/detail/spinlock.hpp + src/3rdparty/include/boost/detail/spinlock_gcc_arm.hpp + src/3rdparty/include/boost/detail/spinlock_nt.hpp + src/3rdparty/include/boost/detail/spinlock_pool.hpp + src/3rdparty/include/boost/detail/spinlock_pt.hpp + src/3rdparty/include/boost/detail/spinlock_sync.hpp + src/3rdparty/include/boost/detail/spinlock_w32.hpp + src/3rdparty/include/boost/detail/workaround.hpp + src/3rdparty/include/boost/detail/yield_k.hpp + src/3rdparty/include/boost/enable_shared_from_this.hpp + src/3rdparty/include/boost/exception/detail/cloning_base.hpp + src/3rdparty/include/boost/exception/detail/counted_base.hpp + src/3rdparty/include/boost/exception/enable_current_exception.hpp + src/3rdparty/include/boost/exception/enable_error_info.hpp + src/3rdparty/include/boost/exception/exception.hpp + src/3rdparty/include/boost/function.hpp + src/3rdparty/include/boost/function/detail/maybe_include.hpp + src/3rdparty/include/boost/function/detail/prologue.hpp + src/3rdparty/include/boost/function/function0.hpp + src/3rdparty/include/boost/function/function1.hpp + src/3rdparty/include/boost/function/function10.hpp + src/3rdparty/include/boost/function/function2.hpp + src/3rdparty/include/boost/function/function3.hpp + src/3rdparty/include/boost/function/function4.hpp + src/3rdparty/include/boost/function/function5.hpp + src/3rdparty/include/boost/function/function6.hpp + src/3rdparty/include/boost/function/function7.hpp + src/3rdparty/include/boost/function/function8.hpp + src/3rdparty/include/boost/function/function9.hpp + src/3rdparty/include/boost/function/function_base.hpp + src/3rdparty/include/boost/function/function_template.hpp + src/3rdparty/include/boost/function_equal.hpp + src/3rdparty/include/boost/get_pointer.hpp + src/3rdparty/include/boost/implicit_cast.hpp + src/3rdparty/include/boost/integer_traits.hpp + src/3rdparty/include/boost/intrusive_ptr.hpp + src/3rdparty/include/boost/io/ios_state.hpp + src/3rdparty/include/boost/io_fwd.hpp + src/3rdparty/include/boost/is_placeholder.hpp + src/3rdparty/include/boost/iterator.hpp + src/3rdparty/include/boost/iterator/detail/config_def.hpp + src/3rdparty/include/boost/iterator/detail/config_undef.hpp + src/3rdparty/include/boost/iterator/detail/enable_if.hpp + src/3rdparty/include/boost/iterator/detail/facade_iterator_category.hpp + src/3rdparty/include/boost/iterator/interoperable.hpp + src/3rdparty/include/boost/iterator/iterator_adaptor.hpp + src/3rdparty/include/boost/iterator/iterator_categories.hpp + src/3rdparty/include/boost/iterator/iterator_facade.hpp + src/3rdparty/include/boost/iterator/iterator_traits.hpp + src/3rdparty/include/boost/iterator/reverse_iterator.hpp + src/3rdparty/include/boost/iterator/transform_iterator.hpp + src/3rdparty/include/boost/lexical_cast.hpp + src/3rdparty/include/boost/limits.hpp + src/3rdparty/include/boost/mem_fn.hpp + src/3rdparty/include/boost/memory_order.hpp + src/3rdparty/include/boost/mpl/always.hpp + src/3rdparty/include/boost/mpl/and.hpp + src/3rdparty/include/boost/mpl/apply.hpp + src/3rdparty/include/boost/mpl/apply_fwd.hpp + src/3rdparty/include/boost/mpl/apply_wrap.hpp + src/3rdparty/include/boost/mpl/arg.hpp + src/3rdparty/include/boost/mpl/arg_fwd.hpp + src/3rdparty/include/boost/mpl/assert.hpp + src/3rdparty/include/boost/mpl/aux_/adl_barrier.hpp + src/3rdparty/include/boost/mpl/aux_/arg_typedef.hpp + src/3rdparty/include/boost/mpl/aux_/arity.hpp + src/3rdparty/include/boost/mpl/aux_/arity_spec.hpp + src/3rdparty/include/boost/mpl/aux_/common_name_wknd.hpp + src/3rdparty/include/boost/mpl/aux_/config/adl.hpp + src/3rdparty/include/boost/mpl/aux_/config/arrays.hpp + src/3rdparty/include/boost/mpl/aux_/config/bind.hpp + src/3rdparty/include/boost/mpl/aux_/config/compiler.hpp + src/3rdparty/include/boost/mpl/aux_/config/ctps.hpp + src/3rdparty/include/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp + src/3rdparty/include/boost/mpl/aux_/config/dtp.hpp + src/3rdparty/include/boost/mpl/aux_/config/eti.hpp + src/3rdparty/include/boost/mpl/aux_/config/gcc.hpp + src/3rdparty/include/boost/mpl/aux_/config/has_apply.hpp + src/3rdparty/include/boost/mpl/aux_/config/has_xxx.hpp + src/3rdparty/include/boost/mpl/aux_/config/integral.hpp + src/3rdparty/include/boost/mpl/aux_/config/intel.hpp + src/3rdparty/include/boost/mpl/aux_/config/lambda.hpp + src/3rdparty/include/boost/mpl/aux_/config/msvc.hpp + src/3rdparty/include/boost/mpl/aux_/config/msvc_typename.hpp + src/3rdparty/include/boost/mpl/aux_/config/nttp.hpp + src/3rdparty/include/boost/mpl/aux_/config/overload_resolution.hpp + src/3rdparty/include/boost/mpl/aux_/config/pp_counter.hpp + src/3rdparty/include/boost/mpl/aux_/config/preprocessor.hpp + src/3rdparty/include/boost/mpl/aux_/config/static_constant.hpp + src/3rdparty/include/boost/mpl/aux_/config/ttp.hpp + src/3rdparty/include/boost/mpl/aux_/config/use_preprocessed.hpp + src/3rdparty/include/boost/mpl/aux_/config/workaround.hpp + src/3rdparty/include/boost/mpl/aux_/count_args.hpp + src/3rdparty/include/boost/mpl/aux_/full_lambda.hpp + src/3rdparty/include/boost/mpl/aux_/has_apply.hpp + src/3rdparty/include/boost/mpl/aux_/has_rebind.hpp + src/3rdparty/include/boost/mpl/aux_/has_type.hpp + src/3rdparty/include/boost/mpl/aux_/include_preprocessed.hpp + src/3rdparty/include/boost/mpl/aux_/integral_wrapper.hpp + src/3rdparty/include/boost/mpl/aux_/lambda_arity_param.hpp + src/3rdparty/include/boost/mpl/aux_/lambda_no_ctps.hpp + src/3rdparty/include/boost/mpl/aux_/lambda_support.hpp + src/3rdparty/include/boost/mpl/aux_/logical_op.hpp + src/3rdparty/include/boost/mpl/aux_/msvc_dtw.hpp + src/3rdparty/include/boost/mpl/aux_/msvc_is_class.hpp + src/3rdparty/include/boost/mpl/aux_/msvc_never_true.hpp + src/3rdparty/include/boost/mpl/aux_/na.hpp + src/3rdparty/include/boost/mpl/aux_/na_assert.hpp + src/3rdparty/include/boost/mpl/aux_/na_fwd.hpp + src/3rdparty/include/boost/mpl/aux_/na_spec.hpp + src/3rdparty/include/boost/mpl/aux_/nested_type_wknd.hpp + src/3rdparty/include/boost/mpl/aux_/nttp_decl.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/add.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/def_params_tail.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/default_params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/enum.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/ext_params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/filter_params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/partial_spec_params.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/range.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/repeat.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/sub.hpp + src/3rdparty/include/boost/mpl/aux_/preprocessor/tuple.hpp + src/3rdparty/include/boost/mpl/aux_/static_cast.hpp + src/3rdparty/include/boost/mpl/aux_/template_arity.hpp + src/3rdparty/include/boost/mpl/aux_/template_arity_fwd.hpp + src/3rdparty/include/boost/mpl/aux_/type_wrapper.hpp + src/3rdparty/include/boost/mpl/aux_/value_wknd.hpp + src/3rdparty/include/boost/mpl/aux_/yes_no.hpp + src/3rdparty/include/boost/mpl/bind.hpp + src/3rdparty/include/boost/mpl/bind_fwd.hpp + src/3rdparty/include/boost/mpl/bool.hpp + src/3rdparty/include/boost/mpl/bool_fwd.hpp + src/3rdparty/include/boost/mpl/eval_if.hpp + src/3rdparty/include/boost/mpl/has_xxx.hpp + src/3rdparty/include/boost/mpl/identity.hpp + src/3rdparty/include/boost/mpl/if.hpp + src/3rdparty/include/boost/mpl/int.hpp + src/3rdparty/include/boost/mpl/int_fwd.hpp + src/3rdparty/include/boost/mpl/integral_c.hpp + src/3rdparty/include/boost/mpl/integral_c_fwd.hpp + src/3rdparty/include/boost/mpl/integral_c_tag.hpp + src/3rdparty/include/boost/mpl/is_placeholder.hpp + src/3rdparty/include/boost/mpl/lambda.hpp + src/3rdparty/include/boost/mpl/lambda_fwd.hpp + src/3rdparty/include/boost/mpl/limits/arity.hpp + src/3rdparty/include/boost/mpl/logical.hpp + src/3rdparty/include/boost/mpl/next.hpp + src/3rdparty/include/boost/mpl/next_prior.hpp + src/3rdparty/include/boost/mpl/not.hpp + src/3rdparty/include/boost/mpl/or.hpp + src/3rdparty/include/boost/mpl/placeholders.hpp + src/3rdparty/include/boost/mpl/protect.hpp + src/3rdparty/include/boost/mpl/quote.hpp + src/3rdparty/include/boost/mpl/size_t.hpp + src/3rdparty/include/boost/mpl/size_t_fwd.hpp + src/3rdparty/include/boost/mpl/void.hpp + src/3rdparty/include/boost/mpl/void_fwd.hpp + src/3rdparty/include/boost/next_prior.hpp + src/3rdparty/include/boost/non_type.hpp + src/3rdparty/include/boost/noncopyable.hpp + src/3rdparty/include/boost/none.hpp + src/3rdparty/include/boost/none_t.hpp + src/3rdparty/include/boost/operators.hpp + src/3rdparty/include/boost/optional.hpp + src/3rdparty/include/boost/optional/optional.hpp + src/3rdparty/include/boost/optional/optional_fwd.hpp + src/3rdparty/include/boost/preprocessor/arithmetic/add.hpp + src/3rdparty/include/boost/preprocessor/arithmetic/dec.hpp + src/3rdparty/include/boost/preprocessor/arithmetic/inc.hpp + src/3rdparty/include/boost/preprocessor/arithmetic/sub.hpp + src/3rdparty/include/boost/preprocessor/array/data.hpp + src/3rdparty/include/boost/preprocessor/array/elem.hpp + src/3rdparty/include/boost/preprocessor/array/size.hpp + src/3rdparty/include/boost/preprocessor/cat.hpp + src/3rdparty/include/boost/preprocessor/comma_if.hpp + src/3rdparty/include/boost/preprocessor/config/config.hpp + src/3rdparty/include/boost/preprocessor/control/detail/dmc/while.hpp + src/3rdparty/include/boost/preprocessor/control/detail/edg/while.hpp + src/3rdparty/include/boost/preprocessor/control/detail/msvc/while.hpp + src/3rdparty/include/boost/preprocessor/control/detail/while.hpp + src/3rdparty/include/boost/preprocessor/control/expr_if.hpp + src/3rdparty/include/boost/preprocessor/control/expr_iif.hpp + src/3rdparty/include/boost/preprocessor/control/if.hpp + src/3rdparty/include/boost/preprocessor/control/iif.hpp + src/3rdparty/include/boost/preprocessor/control/while.hpp + src/3rdparty/include/boost/preprocessor/debug/error.hpp + src/3rdparty/include/boost/preprocessor/dec.hpp + src/3rdparty/include/boost/preprocessor/detail/auto_rec.hpp + src/3rdparty/include/boost/preprocessor/detail/check.hpp + src/3rdparty/include/boost/preprocessor/detail/dmc/auto_rec.hpp + src/3rdparty/include/boost/preprocessor/detail/is_binary.hpp + src/3rdparty/include/boost/preprocessor/empty.hpp + src/3rdparty/include/boost/preprocessor/enum.hpp + src/3rdparty/include/boost/preprocessor/enum_params.hpp + src/3rdparty/include/boost/preprocessor/enum_shifted_params.hpp + src/3rdparty/include/boost/preprocessor/expr_if.hpp + src/3rdparty/include/boost/preprocessor/facilities/empty.hpp + src/3rdparty/include/boost/preprocessor/facilities/identity.hpp + src/3rdparty/include/boost/preprocessor/identity.hpp + src/3rdparty/include/boost/preprocessor/inc.hpp + src/3rdparty/include/boost/preprocessor/iterate.hpp + src/3rdparty/include/boost/preprocessor/iteration/iterate.hpp + src/3rdparty/include/boost/preprocessor/list/adt.hpp + src/3rdparty/include/boost/preprocessor/list/append.hpp + src/3rdparty/include/boost/preprocessor/list/detail/dmc/fold_left.hpp + src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_left.hpp + src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_right.hpp + src/3rdparty/include/boost/preprocessor/list/detail/fold_left.hpp + src/3rdparty/include/boost/preprocessor/list/detail/fold_right.hpp + src/3rdparty/include/boost/preprocessor/list/fold_left.hpp + src/3rdparty/include/boost/preprocessor/list/fold_right.hpp + src/3rdparty/include/boost/preprocessor/list/for_each_i.hpp + src/3rdparty/include/boost/preprocessor/list/reverse.hpp + src/3rdparty/include/boost/preprocessor/list/transform.hpp + src/3rdparty/include/boost/preprocessor/logical/and.hpp + src/3rdparty/include/boost/preprocessor/logical/bitand.hpp + src/3rdparty/include/boost/preprocessor/logical/bool.hpp + src/3rdparty/include/boost/preprocessor/logical/compl.hpp + src/3rdparty/include/boost/preprocessor/punctuation/comma.hpp + src/3rdparty/include/boost/preprocessor/punctuation/comma_if.hpp + src/3rdparty/include/boost/preprocessor/repeat.hpp + src/3rdparty/include/boost/preprocessor/repetition/detail/dmc/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/detail/edg/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/detail/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/detail/msvc/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/enum.hpp + src/3rdparty/include/boost/preprocessor/repetition/enum_binary_params.hpp + src/3rdparty/include/boost/preprocessor/repetition/enum_params.hpp + src/3rdparty/include/boost/preprocessor/repetition/enum_shifted_params.hpp + src/3rdparty/include/boost/preprocessor/repetition/for.hpp + src/3rdparty/include/boost/preprocessor/repetition/repeat.hpp + src/3rdparty/include/boost/preprocessor/repetition/repeat_from_to.hpp + src/3rdparty/include/boost/preprocessor/seq/detail/split.hpp + src/3rdparty/include/boost/preprocessor/seq/elem.hpp + src/3rdparty/include/boost/preprocessor/seq/enum.hpp + src/3rdparty/include/boost/preprocessor/seq/first_n.hpp + src/3rdparty/include/boost/preprocessor/seq/fold_left.hpp + src/3rdparty/include/boost/preprocessor/seq/for_each_i.hpp + src/3rdparty/include/boost/preprocessor/seq/rest_n.hpp + src/3rdparty/include/boost/preprocessor/seq/seq.hpp + src/3rdparty/include/boost/preprocessor/seq/size.hpp + src/3rdparty/include/boost/preprocessor/seq/subseq.hpp + src/3rdparty/include/boost/preprocessor/slot/detail/def.hpp + src/3rdparty/include/boost/preprocessor/slot/slot.hpp + src/3rdparty/include/boost/preprocessor/stringize.hpp + src/3rdparty/include/boost/preprocessor/tuple/eat.hpp + src/3rdparty/include/boost/preprocessor/tuple/elem.hpp + src/3rdparty/include/boost/preprocessor/tuple/rem.hpp + src/3rdparty/include/boost/preprocessor/tuple/to_list.hpp + src/3rdparty/include/boost/range/as_literal.hpp + src/3rdparty/include/boost/range/begin.hpp + src/3rdparty/include/boost/range/config.hpp + src/3rdparty/include/boost/range/const_iterator.hpp + src/3rdparty/include/boost/range/detail/as_literal.hpp + src/3rdparty/include/boost/range/detail/begin.hpp + src/3rdparty/include/boost/range/detail/common.hpp + src/3rdparty/include/boost/range/detail/const_iterator.hpp + src/3rdparty/include/boost/range/detail/detail_str.hpp + src/3rdparty/include/boost/range/detail/end.hpp + src/3rdparty/include/boost/range/detail/implementation_help.hpp + src/3rdparty/include/boost/range/detail/iterator.hpp + src/3rdparty/include/boost/range/detail/remove_extent.hpp + src/3rdparty/include/boost/range/detail/sfinae.hpp + src/3rdparty/include/boost/range/detail/size_type.hpp + src/3rdparty/include/boost/range/detail/str_types.hpp + src/3rdparty/include/boost/range/detail/vc6/end.hpp + src/3rdparty/include/boost/range/difference_type.hpp + src/3rdparty/include/boost/range/distance.hpp + src/3rdparty/include/boost/range/empty.hpp + src/3rdparty/include/boost/range/end.hpp + src/3rdparty/include/boost/range/functions.hpp + src/3rdparty/include/boost/range/iterator.hpp + src/3rdparty/include/boost/range/iterator_range.hpp + src/3rdparty/include/boost/range/mutable_iterator.hpp + src/3rdparty/include/boost/range/rbegin.hpp + src/3rdparty/include/boost/range/rend.hpp + src/3rdparty/include/boost/range/result_iterator.hpp + src/3rdparty/include/boost/range/reverse_iterator.hpp + src/3rdparty/include/boost/range/size.hpp + src/3rdparty/include/boost/range/size_type.hpp + src/3rdparty/include/boost/range/value_type.hpp + src/3rdparty/include/boost/ref.hpp + src/3rdparty/include/boost/shared_ptr.hpp + src/3rdparty/include/boost/static_assert.hpp + src/3rdparty/include/boost/thread/condition.hpp + src/3rdparty/include/boost/thread/condition_variable.hpp + src/3rdparty/include/boost/thread/detail/config.hpp + src/3rdparty/include/boost/thread/detail/move.hpp + src/3rdparty/include/boost/thread/detail/platform.hpp + src/3rdparty/include/boost/thread/detail/thread.hpp + src/3rdparty/include/boost/thread/detail/thread_heap_alloc.hpp + src/3rdparty/include/boost/thread/exceptions.hpp + src/3rdparty/include/boost/thread/locks.hpp + src/3rdparty/include/boost/thread/mutex.hpp + src/3rdparty/include/boost/thread/pthread/condition_variable.hpp + src/3rdparty/include/boost/thread/pthread/condition_variable_fwd.hpp + src/3rdparty/include/boost/thread/pthread/mutex.hpp + src/3rdparty/include/boost/thread/pthread/pthread_mutex_scoped_lock.hpp + src/3rdparty/include/boost/thread/pthread/thread_data.hpp + src/3rdparty/include/boost/thread/pthread/thread_heap_alloc.hpp + src/3rdparty/include/boost/thread/pthread/timespec.hpp + src/3rdparty/include/boost/thread/thread.hpp + src/3rdparty/include/boost/thread/thread_time.hpp + src/3rdparty/include/boost/thread/win32/basic_timed_mutex.hpp + src/3rdparty/include/boost/thread/win32/condition_variable.hpp + src/3rdparty/include/boost/thread/win32/interlocked_read.hpp + src/3rdparty/include/boost/thread/win32/mutex.hpp + src/3rdparty/include/boost/thread/win32/thread_data.hpp + src/3rdparty/include/boost/thread/win32/thread_heap_alloc.hpp + src/3rdparty/include/boost/thread/win32/thread_primitives.hpp + src/3rdparty/include/boost/thread/xtime.hpp + src/3rdparty/include/boost/throw_exception.hpp + src/3rdparty/include/boost/type.hpp + src/3rdparty/include/boost/type_traits/add_const.hpp + src/3rdparty/include/boost/type_traits/add_pointer.hpp + src/3rdparty/include/boost/type_traits/add_reference.hpp + src/3rdparty/include/boost/type_traits/alignment_of.hpp + src/3rdparty/include/boost/type_traits/arithmetic_traits.hpp + src/3rdparty/include/boost/type_traits/broken_compiler_spec.hpp + src/3rdparty/include/boost/type_traits/composite_traits.hpp + src/3rdparty/include/boost/type_traits/config.hpp + src/3rdparty/include/boost/type_traits/conversion_traits.hpp + src/3rdparty/include/boost/type_traits/detail/bool_trait_def.hpp + src/3rdparty/include/boost/type_traits/detail/bool_trait_undef.hpp + src/3rdparty/include/boost/type_traits/detail/cv_traits_impl.hpp + src/3rdparty/include/boost/type_traits/detail/false_result.hpp + src/3rdparty/include/boost/type_traits/detail/ice_and.hpp + src/3rdparty/include/boost/type_traits/detail/ice_eq.hpp + src/3rdparty/include/boost/type_traits/detail/ice_not.hpp + src/3rdparty/include/boost/type_traits/detail/ice_or.hpp + src/3rdparty/include/boost/type_traits/detail/is_function_ptr_helper.hpp + src/3rdparty/include/boost/type_traits/detail/is_function_ptr_tester.hpp + src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp + src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp + src/3rdparty/include/boost/type_traits/detail/size_t_trait_def.hpp + src/3rdparty/include/boost/type_traits/detail/size_t_trait_undef.hpp + src/3rdparty/include/boost/type_traits/detail/template_arity_spec.hpp + src/3rdparty/include/boost/type_traits/detail/type_trait_def.hpp + src/3rdparty/include/boost/type_traits/detail/type_trait_undef.hpp + src/3rdparty/include/boost/type_traits/detail/wrap.hpp + src/3rdparty/include/boost/type_traits/detail/yes_no_type.hpp + src/3rdparty/include/boost/type_traits/function_traits.hpp + src/3rdparty/include/boost/type_traits/has_nothrow_copy.hpp + src/3rdparty/include/boost/type_traits/has_trivial_copy.hpp + src/3rdparty/include/boost/type_traits/ice.hpp + src/3rdparty/include/boost/type_traits/integral_constant.hpp + src/3rdparty/include/boost/type_traits/intrinsics.hpp + src/3rdparty/include/boost/type_traits/is_abstract.hpp + src/3rdparty/include/boost/type_traits/is_arithmetic.hpp + src/3rdparty/include/boost/type_traits/is_array.hpp + src/3rdparty/include/boost/type_traits/is_base_and_derived.hpp + src/3rdparty/include/boost/type_traits/is_class.hpp + src/3rdparty/include/boost/type_traits/is_const.hpp + src/3rdparty/include/boost/type_traits/is_convertible.hpp + src/3rdparty/include/boost/type_traits/is_enum.hpp + src/3rdparty/include/boost/type_traits/is_float.hpp + src/3rdparty/include/boost/type_traits/is_function.hpp + src/3rdparty/include/boost/type_traits/is_fundamental.hpp + src/3rdparty/include/boost/type_traits/is_integral.hpp + src/3rdparty/include/boost/type_traits/is_member_function_pointer.hpp + src/3rdparty/include/boost/type_traits/is_member_pointer.hpp + src/3rdparty/include/boost/type_traits/is_pod.hpp + src/3rdparty/include/boost/type_traits/is_pointer.hpp + src/3rdparty/include/boost/type_traits/is_polymorphic.hpp + src/3rdparty/include/boost/type_traits/is_reference.hpp + src/3rdparty/include/boost/type_traits/is_same.hpp + src/3rdparty/include/boost/type_traits/is_scalar.hpp + src/3rdparty/include/boost/type_traits/is_union.hpp + src/3rdparty/include/boost/type_traits/is_void.hpp + src/3rdparty/include/boost/type_traits/is_volatile.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_bounds.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_const.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_cv.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_pointer.hpp + src/3rdparty/include/boost/type_traits/msvc/remove_reference.hpp + src/3rdparty/include/boost/type_traits/msvc/typeof.hpp + src/3rdparty/include/boost/type_traits/remove_bounds.hpp + src/3rdparty/include/boost/type_traits/remove_const.hpp + src/3rdparty/include/boost/type_traits/remove_cv.hpp + src/3rdparty/include/boost/type_traits/remove_pointer.hpp + src/3rdparty/include/boost/type_traits/remove_reference.hpp + src/3rdparty/include/boost/type_traits/type_with_alignment.hpp + src/3rdparty/include/boost/utility.hpp + src/3rdparty/include/boost/utility/addressof.hpp + src/3rdparty/include/boost/utility/base_from_member.hpp + src/3rdparty/include/boost/utility/compare_pointees.hpp + src/3rdparty/include/boost/utility/enable_if.hpp + src/3rdparty/include/boost/version.hpp + src/3rdparty/include/boost/visit_each.hpp + src/3rdparty/include/boost/weak_ptr.hpp + src/core/IPlugin.h + src/core/audio/IBuffer.h + src/core/audio/IOutput.h + src/core/audio/IPlayer.h + src/core/config.h + src/core/filestreams/IFileStream.h diff --git a/src/contrib/alsaout/CMakeFiles/alsaout.dir/depend.make b/src/contrib/alsaout/CMakeFiles/alsaout.dir/depend.make new file mode 100644 index 000000000..3426adcd0 --- /dev/null +++ b/src/contrib/alsaout/CMakeFiles/alsaout.dir/depend.make @@ -0,0 +1,1708 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.6 + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/contrib/alsaout/AlsaOut.cpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/contrib/alsaout/AlsaOut.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/contrib/alsaout/AlsaOutBuffer.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/contrib/alsaout/pch.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/case_conv.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/compare.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/concept.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/constants.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/case_conv.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/find_format.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/find_format_all.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/find_format_store.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/finder.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/replace_storage.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/sequence.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/util.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/find_format.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/finder.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/replace.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/sequence_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/algorithm/string/yes_no_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/bind.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/bind/arg.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/bind/bind_cc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/bind/bind_mf2_cc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/bind/bind_mf_cc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/bind/bind_template.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/bind/mem_fn_cc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/bind/mem_fn_template.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/bind/mem_fn_vw.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/bind/placeholders.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/bind/storage.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/call_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/checked_delete.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/concept/assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/concept/detail/borland.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/concept/detail/concept_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/concept/detail/concept_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/concept/detail/general.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/concept/detail/has_constraints.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/concept/detail/msvc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/concept/usage.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/concept_check.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/config/abi_prefix.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/config/abi_suffix.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/config/auto_link.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/config/no_tr1/functional.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/config/no_tr1/memory.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/config/no_tr1/utility.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/config/posix_features.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/config/requires_threads.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/config/select_compiler_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/config/select_platform_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/config/select_stdlib_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/config/suffix.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/cstdint.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/current_function.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/adjust_functors.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/c_time.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/compiler_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/constrained_value.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/date.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/date_clock_device.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/date_defs.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/date_duration.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/date_duration_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/date_facet.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/date_format_simple.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/date_formatting.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/date_formatting_limited.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/date_generator_formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/date_generator_parser.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/date_generators.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/date_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/dst_rules.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/filetime_functions.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/format_date_parser.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/conversion.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/formatters.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/formatters_limited.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_calendar.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_date.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_day.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_day_of_year.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_duration.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_duration_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_month.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_weekday.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_year.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_ymd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/gregorian_io.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian/gregorian_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian_calendar.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/gregorian_calendar.ipp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/int_adapter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/iso_format.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/locale_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/microsec_time_clock.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/parse_format_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/period.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/period_formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/period_parser.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/posix_time/conversion.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/posix_time/date_duration_operators.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/posix_time/posix_time_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/posix_time/posix_time_duration.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/posix_time/posix_time_system.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/posix_time/posix_time_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/posix_time/ptime.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/posix_time/time_period.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/special_defs.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/special_values_formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/special_values_parser.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/string_convert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/string_parse_tree.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/strings_from_facet.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/time.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/time_clock.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/time_defs.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/time_duration.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/time_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/time_resolution_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/time_system_counted.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/time_system_split.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/wrapping_int.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/date_time/year_month_day.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/atomic_count.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/atomic_count_gcc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/atomic_count_gcc_x86.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/atomic_count_pthreads.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/atomic_count_sync.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/atomic_count_win32.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/bad_weak_ptr.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/call_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/endian.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/indirect_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/interlocked.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/is_function_ref_tester.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/lcast_precision.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/lightweight_mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/limits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/lwm_nop.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/lwm_pthreads.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/lwm_win32_cs.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/ob_call_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/quick_allocator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/reference_content.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/shared_count.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/shared_ptr_nmt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_convertible.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_acc_ia64.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_cw_ppc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_gcc_ia64.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_gcc_ppc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_gcc_sparc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_gcc_x86.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_nt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_pt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_spin.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_sync.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_w32.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_counted_impl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/sp_typeinfo.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/spinlock.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/spinlock_gcc_arm.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/spinlock_nt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/spinlock_pool.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/spinlock_pt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/spinlock_sync.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/spinlock_w32.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/workaround.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/detail/yield_k.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/enable_shared_from_this.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/exception/detail/cloning_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/exception/detail/counted_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/exception/enable_current_exception.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/exception/enable_error_info.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/exception/exception.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/detail/maybe_include.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/detail/prologue.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/function0.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/function1.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/function10.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/function2.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/function3.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/function4.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/function5.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/function6.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/function7.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/function8.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/function9.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/function_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function/function_template.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/function_equal.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/get_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/implicit_cast.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/integer_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/intrusive_ptr.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/io/ios_state.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/io_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/is_placeholder.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/iterator/detail/config_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/iterator/detail/config_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/iterator/detail/enable_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/iterator/detail/facade_iterator_category.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/iterator/interoperable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/iterator/iterator_adaptor.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/iterator/iterator_categories.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/iterator/iterator_facade.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/iterator/iterator_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/iterator/reverse_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/iterator/transform_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/lexical_cast.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/limits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mem_fn.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/memory_order.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/always.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/and.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/apply.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/apply_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/apply_wrap.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/arg.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/arg_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/adl_barrier.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/arg_typedef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/arity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/arity_spec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/common_name_wknd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/adl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/arrays.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/bind.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/compiler.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/ctps.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/dtp.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/eti.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/gcc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/has_apply.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/has_xxx.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/integral.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/intel.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/lambda.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/msvc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/msvc_typename.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/nttp.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/overload_resolution.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/pp_counter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/preprocessor.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/static_constant.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/ttp.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/use_preprocessed.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/workaround.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/count_args.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/full_lambda.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/has_apply.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/has_rebind.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/has_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/include_preprocessed.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/integral_wrapper.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/lambda_arity_param.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/lambda_no_ctps.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/lambda_support.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/logical_op.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/msvc_dtw.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/msvc_is_class.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/msvc_never_true.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/na.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/na_assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/na_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/na_spec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/nested_type_wknd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/nttp_decl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/add.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/def_params_tail.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/default_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/ext_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/filter_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/partial_spec_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/range.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/repeat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/sub.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/tuple.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/static_cast.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/template_arity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/template_arity_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/type_wrapper.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/value_wknd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/aux_/yes_no.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/bind.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/bind_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/bool.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/bool_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/eval_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/has_xxx.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/identity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/int.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/int_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/integral_c.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/integral_c_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/integral_c_tag.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/is_placeholder.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/lambda.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/lambda_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/limits/arity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/logical.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/next.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/next_prior.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/not.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/or.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/placeholders.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/protect.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/quote.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/size_t.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/size_t_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/void.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/mpl/void_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/next_prior.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/non_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/noncopyable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/none.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/none_t.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/operators.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/optional.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/optional/optional.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/optional/optional_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/arithmetic/add.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/arithmetic/dec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/arithmetic/inc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/arithmetic/sub.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/array/data.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/array/elem.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/array/size.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/cat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/comma_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/config/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/control/detail/dmc/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/control/detail/edg/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/control/detail/msvc/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/control/detail/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/control/expr_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/control/expr_iif.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/control/if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/control/iif.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/control/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/debug/error.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/dec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/detail/auto_rec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/detail/check.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/detail/dmc/auto_rec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/detail/is_binary.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/empty.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/enum_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/enum_shifted_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/expr_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/facilities/empty.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/facilities/identity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/identity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/inc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/iterate.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/iteration/iterate.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/list/adt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/list/append.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/dmc/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_right.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/fold_right.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/list/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/list/fold_right.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/list/for_each_i.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/list/reverse.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/list/transform.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/logical/and.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/logical/bitand.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/logical/bool.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/logical/compl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/punctuation/comma.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/punctuation/comma_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/repeat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/detail/dmc/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/detail/edg/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/detail/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/detail/msvc/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/enum_binary_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/enum_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/enum_shifted_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/repeat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/repeat_from_to.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/seq/detail/split.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/seq/elem.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/seq/enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/seq/first_n.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/seq/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/seq/for_each_i.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/seq/rest_n.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/seq/seq.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/seq/size.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/seq/subseq.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/slot/detail/def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/slot/slot.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/stringize.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/tuple/eat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/tuple/elem.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/tuple/rem.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/preprocessor/tuple/to_list.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/as_literal.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/begin.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/const_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/detail/as_literal.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/detail/begin.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/detail/common.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/detail/const_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/detail/detail_str.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/detail/end.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/detail/implementation_help.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/detail/iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/detail/remove_extent.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/detail/sfinae.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/detail/size_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/detail/str_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/detail/vc6/end.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/difference_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/distance.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/empty.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/end.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/functions.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/iterator_range.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/mutable_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/rbegin.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/rend.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/result_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/reverse_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/size.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/size_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/range/value_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/ref.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/shared_ptr.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/static_assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/condition.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/condition_variable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/detail/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/detail/move.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/detail/platform.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/detail/thread.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/detail/thread_heap_alloc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/exceptions.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/locks.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/pthread/condition_variable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/pthread/condition_variable_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/pthread/mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/pthread/thread_data.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/pthread/thread_heap_alloc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/pthread/timespec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/thread.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/thread_time.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/win32/basic_timed_mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/win32/condition_variable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/win32/interlocked_read.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/win32/mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/win32/thread_data.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/win32/thread_heap_alloc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/win32/thread_primitives.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/thread/xtime.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/throw_exception.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/add_const.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/add_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/add_reference.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/alignment_of.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/arithmetic_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/broken_compiler_spec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/composite_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/conversion_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/bool_trait_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/bool_trait_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/cv_traits_impl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/false_result.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/ice_and.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/ice_eq.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/ice_not.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/ice_or.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/is_function_ptr_helper.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/is_function_ptr_tester.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/size_t_trait_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/size_t_trait_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/template_arity_spec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/type_trait_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/type_trait_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/wrap.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/detail/yes_no_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/function_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/has_nothrow_copy.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/has_trivial_copy.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/ice.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/integral_constant.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/intrinsics.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_abstract.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_arithmetic.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_array.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_base_and_derived.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_class.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_const.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_convertible.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_float.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_function.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_fundamental.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_integral.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_member_function_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_member_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_pod.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_polymorphic.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_reference.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_same.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_scalar.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_union.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_void.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/is_volatile.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_bounds.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_const.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_cv.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_reference.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/msvc/typeof.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/remove_bounds.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/remove_const.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/remove_cv.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/remove_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/remove_reference.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/type_traits/type_with_alignment.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/utility.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/utility/addressof.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/utility/base_from_member.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/utility/compare_pointees.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/utility/enable_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/version.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/visit_each.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/3rdparty/include/boost/weak_ptr.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/core/audio/IBuffer.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/core/audio/IOutput.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/core/audio/IPlayer.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/core/config.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o: src/core/filestreams/IFileStream.h + +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/contrib/alsaout/AlsaOut.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/contrib/alsaout/AlsaOutBuffer.cpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/contrib/alsaout/AlsaOutBuffer.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/contrib/alsaout/pch.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/case_conv.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/compare.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/concept.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/constants.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/case_conv.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/find_format.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/find_format_all.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/find_format_store.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/finder.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/replace_storage.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/sequence.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/util.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/find_format.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/finder.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/replace.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/sequence_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/algorithm/string/yes_no_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/bind.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/bind/arg.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/bind/bind_cc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/bind/bind_mf2_cc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/bind/bind_mf_cc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/bind/bind_template.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/bind/mem_fn_cc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/bind/mem_fn_template.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/bind/mem_fn_vw.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/bind/placeholders.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/bind/storage.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/call_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/checked_delete.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/concept/assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/concept/detail/borland.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/concept/detail/concept_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/concept/detail/concept_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/concept/detail/general.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/concept/detail/has_constraints.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/concept/detail/msvc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/concept/usage.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/concept_check.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/config/abi_prefix.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/config/abi_suffix.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/config/auto_link.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/config/no_tr1/functional.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/config/no_tr1/memory.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/config/no_tr1/utility.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/config/posix_features.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/config/requires_threads.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/config/select_compiler_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/config/select_platform_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/config/select_stdlib_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/config/suffix.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/cstdint.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/current_function.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/adjust_functors.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/c_time.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/compiler_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/constrained_value.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/date.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/date_clock_device.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/date_defs.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/date_duration.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/date_duration_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/date_facet.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/date_format_simple.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/date_formatting.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/date_formatting_limited.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/date_generator_formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/date_generator_parser.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/date_generators.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/date_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/dst_rules.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/filetime_functions.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/format_date_parser.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/conversion.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/formatters.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/formatters_limited.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_calendar.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_date.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_day.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_day_of_year.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_duration.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_duration_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_month.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_weekday.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_year.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_ymd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/gregorian_io.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian/gregorian_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian_calendar.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/gregorian_calendar.ipp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/int_adapter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/iso_format.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/locale_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/microsec_time_clock.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/parse_format_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/period.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/period_formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/period_parser.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/posix_time/conversion.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/posix_time/date_duration_operators.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/posix_time/posix_time_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/posix_time/posix_time_duration.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/posix_time/posix_time_system.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/posix_time/posix_time_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/posix_time/ptime.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/posix_time/time_period.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/special_defs.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/special_values_formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/special_values_parser.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/string_convert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/string_parse_tree.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/strings_from_facet.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/time.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/time_clock.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/time_defs.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/time_duration.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/time_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/time_resolution_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/time_system_counted.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/time_system_split.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/wrapping_int.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/date_time/year_month_day.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/atomic_count.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/atomic_count_gcc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/atomic_count_gcc_x86.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/atomic_count_pthreads.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/atomic_count_sync.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/atomic_count_win32.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/bad_weak_ptr.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/call_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/endian.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/indirect_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/interlocked.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/is_function_ref_tester.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/lcast_precision.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/lightweight_mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/limits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/lwm_nop.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/lwm_pthreads.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/lwm_win32_cs.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/ob_call_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/quick_allocator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/reference_content.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/shared_count.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/shared_ptr_nmt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_convertible.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_acc_ia64.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_cw_ppc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_gcc_ia64.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_gcc_ppc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_gcc_sparc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_gcc_x86.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_nt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_pt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_spin.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_sync.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_w32.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_counted_impl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/sp_typeinfo.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/spinlock.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/spinlock_gcc_arm.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/spinlock_nt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/spinlock_pool.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/spinlock_pt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/spinlock_sync.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/spinlock_w32.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/workaround.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/detail/yield_k.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/enable_shared_from_this.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/exception/detail/cloning_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/exception/detail/counted_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/exception/enable_current_exception.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/exception/enable_error_info.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/exception/exception.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/detail/maybe_include.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/detail/prologue.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/function0.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/function1.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/function10.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/function2.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/function3.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/function4.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/function5.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/function6.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/function7.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/function8.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/function9.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/function_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function/function_template.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/function_equal.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/get_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/implicit_cast.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/integer_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/intrusive_ptr.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/io/ios_state.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/io_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/is_placeholder.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/iterator/detail/config_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/iterator/detail/config_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/iterator/detail/enable_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/iterator/detail/facade_iterator_category.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/iterator/interoperable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/iterator/iterator_adaptor.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/iterator/iterator_categories.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/iterator/iterator_facade.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/iterator/iterator_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/iterator/reverse_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/iterator/transform_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/lexical_cast.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/limits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mem_fn.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/memory_order.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/always.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/and.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/apply.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/apply_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/apply_wrap.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/arg.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/arg_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/adl_barrier.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/arg_typedef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/arity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/arity_spec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/common_name_wknd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/adl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/arrays.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/bind.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/compiler.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/ctps.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/dtp.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/eti.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/gcc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/has_apply.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/has_xxx.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/integral.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/intel.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/lambda.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/msvc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/msvc_typename.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/nttp.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/overload_resolution.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/pp_counter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/preprocessor.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/static_constant.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/ttp.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/use_preprocessed.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/workaround.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/count_args.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/full_lambda.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/has_apply.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/has_rebind.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/has_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/include_preprocessed.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/integral_wrapper.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/lambda_arity_param.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/lambda_no_ctps.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/lambda_support.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/logical_op.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/msvc_dtw.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/msvc_is_class.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/msvc_never_true.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/na.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/na_assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/na_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/na_spec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/nested_type_wknd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/nttp_decl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/add.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/def_params_tail.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/default_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/ext_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/filter_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/partial_spec_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/range.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/repeat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/sub.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/tuple.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/static_cast.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/template_arity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/template_arity_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/type_wrapper.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/value_wknd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/aux_/yes_no.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/bind.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/bind_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/bool.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/bool_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/eval_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/has_xxx.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/identity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/int.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/int_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/integral_c.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/integral_c_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/integral_c_tag.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/is_placeholder.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/lambda.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/lambda_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/limits/arity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/logical.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/next.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/next_prior.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/not.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/or.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/placeholders.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/protect.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/quote.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/size_t.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/size_t_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/void.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/mpl/void_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/next_prior.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/non_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/noncopyable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/none.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/none_t.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/operators.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/optional.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/optional/optional.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/optional/optional_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/arithmetic/add.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/arithmetic/dec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/arithmetic/inc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/arithmetic/sub.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/array/data.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/array/elem.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/array/size.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/cat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/comma_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/config/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/control/detail/dmc/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/control/detail/edg/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/control/detail/msvc/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/control/detail/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/control/expr_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/control/expr_iif.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/control/if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/control/iif.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/control/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/debug/error.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/dec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/detail/auto_rec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/detail/check.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/detail/dmc/auto_rec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/detail/is_binary.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/empty.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/enum_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/enum_shifted_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/expr_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/facilities/empty.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/facilities/identity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/identity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/inc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/iterate.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/iteration/iterate.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/list/adt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/list/append.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/dmc/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_right.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/fold_right.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/list/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/list/fold_right.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/list/for_each_i.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/list/reverse.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/list/transform.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/logical/and.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/logical/bitand.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/logical/bool.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/logical/compl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/punctuation/comma.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/punctuation/comma_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/repeat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/detail/dmc/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/detail/edg/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/detail/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/detail/msvc/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/enum_binary_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/enum_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/enum_shifted_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/repeat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/repeat_from_to.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/seq/detail/split.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/seq/elem.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/seq/enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/seq/first_n.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/seq/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/seq/for_each_i.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/seq/rest_n.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/seq/seq.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/seq/size.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/seq/subseq.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/slot/detail/def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/slot/slot.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/stringize.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/tuple/eat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/tuple/elem.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/tuple/rem.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/preprocessor/tuple/to_list.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/as_literal.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/begin.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/const_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/detail/as_literal.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/detail/begin.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/detail/common.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/detail/const_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/detail/detail_str.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/detail/end.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/detail/implementation_help.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/detail/iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/detail/remove_extent.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/detail/sfinae.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/detail/size_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/detail/str_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/detail/vc6/end.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/difference_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/distance.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/empty.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/end.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/functions.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/iterator_range.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/mutable_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/rbegin.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/rend.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/result_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/reverse_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/size.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/size_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/range/value_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/ref.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/shared_ptr.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/static_assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/condition.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/condition_variable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/detail/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/detail/move.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/detail/platform.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/detail/thread.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/detail/thread_heap_alloc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/exceptions.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/locks.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/pthread/condition_variable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/pthread/condition_variable_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/pthread/mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/pthread/thread_data.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/pthread/thread_heap_alloc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/pthread/timespec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/thread.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/thread_time.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/win32/basic_timed_mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/win32/condition_variable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/win32/interlocked_read.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/win32/mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/win32/thread_data.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/win32/thread_heap_alloc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/win32/thread_primitives.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/thread/xtime.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/throw_exception.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/add_const.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/add_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/add_reference.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/alignment_of.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/arithmetic_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/broken_compiler_spec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/composite_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/conversion_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/bool_trait_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/bool_trait_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/cv_traits_impl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/false_result.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/ice_and.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/ice_eq.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/ice_not.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/ice_or.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/is_function_ptr_helper.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/is_function_ptr_tester.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/size_t_trait_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/size_t_trait_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/template_arity_spec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/type_trait_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/type_trait_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/wrap.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/detail/yes_no_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/function_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/has_nothrow_copy.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/has_trivial_copy.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/ice.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/integral_constant.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/intrinsics.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_abstract.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_arithmetic.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_array.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_base_and_derived.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_class.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_const.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_convertible.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_float.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_function.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_fundamental.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_integral.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_member_function_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_member_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_pod.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_polymorphic.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_reference.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_same.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_scalar.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_union.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_void.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/is_volatile.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_bounds.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_const.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_cv.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_reference.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/msvc/typeof.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/remove_bounds.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/remove_const.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/remove_cv.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/remove_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/remove_reference.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/type_traits/type_with_alignment.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/utility.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/utility/addressof.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/utility/base_from_member.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/utility/compare_pointees.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/utility/enable_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/version.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/visit_each.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/3rdparty/include/boost/weak_ptr.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/core/audio/IBuffer.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/core/audio/IOutput.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/core/audio/IPlayer.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/core/config.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o: src/core/filestreams/IFileStream.h + +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/contrib/alsaout/AlsaOut.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/contrib/alsaout/AlsaOutBuffer.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/contrib/alsaout/alsaout_plugin.cpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/contrib/alsaout/pch.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/case_conv.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/compare.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/concept.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/constants.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/case_conv.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/find_format.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/find_format_all.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/find_format_store.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/finder.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/replace_storage.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/sequence.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/detail/util.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/find_format.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/finder.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/replace.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/sequence_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/algorithm/string/yes_no_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/bind.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/bind/arg.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/bind/bind_cc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/bind/bind_mf2_cc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/bind/bind_mf_cc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/bind/bind_template.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/bind/mem_fn_cc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/bind/mem_fn_template.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/bind/mem_fn_vw.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/bind/placeholders.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/bind/storage.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/call_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/checked_delete.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/concept/assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/concept/detail/borland.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/concept/detail/concept_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/concept/detail/concept_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/concept/detail/general.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/concept/detail/has_constraints.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/concept/detail/msvc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/concept/usage.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/concept_check.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/config/abi_prefix.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/config/abi_suffix.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/config/auto_link.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/config/no_tr1/functional.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/config/no_tr1/memory.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/config/no_tr1/utility.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/config/posix_features.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/config/requires_threads.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/config/select_compiler_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/config/select_platform_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/config/select_stdlib_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/config/suffix.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/cstdint.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/current_function.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/adjust_functors.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/c_time.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/compiler_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/constrained_value.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/date.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/date_clock_device.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/date_defs.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/date_duration.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/date_duration_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/date_facet.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/date_format_simple.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/date_formatting.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/date_formatting_limited.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/date_generator_formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/date_generator_parser.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/date_generators.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/date_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/dst_rules.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/filetime_functions.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/format_date_parser.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/conversion.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/formatters.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/formatters_limited.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_calendar.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_date.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_day.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_day_of_year.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_duration.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_duration_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_month.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_weekday.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_year.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/greg_ymd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/gregorian_io.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian/gregorian_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian_calendar.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/gregorian_calendar.ipp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/int_adapter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/iso_format.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/locale_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/microsec_time_clock.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/parse_format_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/period.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/period_formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/period_parser.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/posix_time/conversion.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/posix_time/date_duration_operators.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/posix_time/posix_time_config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/posix_time/posix_time_duration.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/posix_time/posix_time_system.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/posix_time/posix_time_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/posix_time/ptime.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/posix_time/time_period.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/special_defs.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/special_values_formatter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/special_values_parser.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/string_convert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/string_parse_tree.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/strings_from_facet.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/time.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/time_clock.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/time_defs.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/time_duration.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/time_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/time_resolution_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/time_system_counted.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/time_system_split.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/wrapping_int.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/date_time/year_month_day.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/atomic_count.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/atomic_count_gcc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/atomic_count_gcc_x86.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/atomic_count_pthreads.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/atomic_count_sync.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/atomic_count_win32.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/bad_weak_ptr.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/call_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/endian.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/indirect_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/interlocked.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/is_function_ref_tester.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/lcast_precision.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/lightweight_mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/limits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/lwm_nop.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/lwm_pthreads.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/lwm_win32_cs.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/ob_call_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/quick_allocator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/reference_content.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/shared_count.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/shared_ptr_nmt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_convertible.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_acc_ia64.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_cw_ppc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_gcc_ia64.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_gcc_ppc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_gcc_sparc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_gcc_x86.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_nt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_pt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_spin.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_sync.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_counted_base_w32.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_counted_impl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/sp_typeinfo.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/spinlock.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/spinlock_gcc_arm.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/spinlock_nt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/spinlock_pool.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/spinlock_pt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/spinlock_sync.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/spinlock_w32.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/workaround.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/detail/yield_k.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/enable_shared_from_this.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/exception/detail/cloning_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/exception/detail/counted_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/exception/enable_current_exception.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/exception/enable_error_info.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/exception/exception.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/detail/maybe_include.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/detail/prologue.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/function0.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/function1.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/function10.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/function2.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/function3.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/function4.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/function5.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/function6.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/function7.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/function8.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/function9.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/function_base.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function/function_template.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/function_equal.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/get_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/implicit_cast.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/integer_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/intrusive_ptr.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/io/ios_state.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/io_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/is_placeholder.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/iterator/detail/config_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/iterator/detail/config_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/iterator/detail/enable_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/iterator/detail/facade_iterator_category.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/iterator/interoperable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/iterator/iterator_adaptor.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/iterator/iterator_categories.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/iterator/iterator_facade.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/iterator/iterator_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/iterator/reverse_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/iterator/transform_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/lexical_cast.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/limits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mem_fn.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/memory_order.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/always.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/and.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/apply.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/apply_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/apply_wrap.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/arg.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/arg_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/adl_barrier.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/arg_typedef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/arity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/arity_spec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/common_name_wknd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/adl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/arrays.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/bind.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/compiler.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/ctps.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/dtp.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/eti.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/gcc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/has_apply.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/has_xxx.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/integral.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/intel.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/lambda.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/msvc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/msvc_typename.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/nttp.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/overload_resolution.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/pp_counter.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/preprocessor.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/static_constant.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/ttp.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/use_preprocessed.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/config/workaround.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/count_args.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/full_lambda.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/has_apply.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/has_rebind.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/has_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/include_preprocessed.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/integral_wrapper.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/lambda_arity_param.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/lambda_no_ctps.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/lambda_support.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/logical_op.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/msvc_dtw.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/msvc_is_class.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/msvc_never_true.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/na.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/na_assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/na_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/na_spec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/nested_type_wknd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/nttp_decl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/add.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/def_params_tail.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/default_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/ext_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/filter_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/partial_spec_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/range.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/repeat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/sub.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/preprocessor/tuple.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/static_cast.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/template_arity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/template_arity_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/type_wrapper.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/value_wknd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/aux_/yes_no.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/bind.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/bind_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/bool.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/bool_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/eval_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/has_xxx.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/identity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/int.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/int_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/integral_c.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/integral_c_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/integral_c_tag.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/is_placeholder.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/lambda.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/lambda_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/limits/arity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/logical.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/next.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/next_prior.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/not.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/or.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/placeholders.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/protect.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/quote.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/size_t.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/size_t_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/void.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/mpl/void_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/next_prior.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/non_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/noncopyable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/none.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/none_t.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/operators.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/optional.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/optional/optional.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/optional/optional_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/arithmetic/add.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/arithmetic/dec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/arithmetic/inc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/arithmetic/sub.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/array/data.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/array/elem.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/array/size.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/cat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/comma_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/config/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/control/detail/dmc/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/control/detail/edg/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/control/detail/msvc/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/control/detail/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/control/expr_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/control/expr_iif.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/control/if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/control/iif.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/control/while.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/debug/error.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/dec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/detail/auto_rec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/detail/check.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/detail/dmc/auto_rec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/detail/is_binary.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/empty.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/enum_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/enum_shifted_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/expr_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/facilities/empty.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/facilities/identity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/identity.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/inc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/iterate.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/iteration/iterate.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/list/adt.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/list/append.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/dmc/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/edg/fold_right.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/list/detail/fold_right.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/list/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/list/fold_right.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/list/for_each_i.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/list/reverse.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/list/transform.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/logical/and.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/logical/bitand.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/logical/bool.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/logical/compl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/punctuation/comma.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/punctuation/comma_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/repeat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/detail/dmc/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/detail/edg/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/detail/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/detail/msvc/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/enum_binary_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/enum_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/enum_shifted_params.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/for.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/repeat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/repetition/repeat_from_to.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/seq/detail/split.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/seq/elem.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/seq/enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/seq/first_n.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/seq/fold_left.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/seq/for_each_i.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/seq/rest_n.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/seq/seq.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/seq/size.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/seq/subseq.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/slot/detail/def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/slot/slot.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/stringize.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/tuple/eat.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/tuple/elem.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/tuple/rem.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/preprocessor/tuple/to_list.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/as_literal.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/begin.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/const_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/detail/as_literal.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/detail/begin.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/detail/common.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/detail/const_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/detail/detail_str.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/detail/end.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/detail/implementation_help.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/detail/iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/detail/remove_extent.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/detail/sfinae.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/detail/size_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/detail/str_types.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/detail/vc6/end.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/difference_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/distance.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/empty.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/end.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/functions.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/iterator_range.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/mutable_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/rbegin.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/rend.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/result_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/reverse_iterator.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/size.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/size_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/range/value_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/ref.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/shared_ptr.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/static_assert.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/condition.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/condition_variable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/detail/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/detail/move.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/detail/platform.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/detail/thread.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/detail/thread_heap_alloc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/exceptions.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/locks.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/pthread/condition_variable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/pthread/condition_variable_fwd.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/pthread/mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/pthread/thread_data.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/pthread/thread_heap_alloc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/pthread/timespec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/thread.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/thread_time.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/win32/basic_timed_mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/win32/condition_variable.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/win32/interlocked_read.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/win32/mutex.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/win32/thread_data.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/win32/thread_heap_alloc.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/win32/thread_primitives.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/thread/xtime.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/throw_exception.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/add_const.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/add_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/add_reference.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/alignment_of.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/arithmetic_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/broken_compiler_spec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/composite_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/config.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/conversion_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/bool_trait_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/bool_trait_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/cv_traits_impl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/false_result.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/ice_and.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/ice_eq.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/ice_not.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/ice_or.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/is_function_ptr_helper.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/is_function_ptr_tester.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/size_t_trait_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/size_t_trait_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/template_arity_spec.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/type_trait_def.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/type_trait_undef.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/wrap.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/detail/yes_no_type.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/function_traits.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/has_nothrow_copy.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/has_trivial_copy.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/ice.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/integral_constant.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/intrinsics.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_abstract.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_arithmetic.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_array.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_base_and_derived.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_class.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_const.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_convertible.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_enum.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_float.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_function.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_fundamental.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_integral.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_member_function_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_member_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_pod.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_polymorphic.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_reference.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_same.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_scalar.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_union.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_void.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/is_volatile.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_bounds.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_const.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_cv.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/msvc/remove_reference.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/msvc/typeof.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/remove_bounds.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/remove_const.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/remove_cv.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/remove_pointer.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/remove_reference.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/type_traits/type_with_alignment.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/utility.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/utility/addressof.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/utility/base_from_member.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/utility/compare_pointees.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/utility/enable_if.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/version.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/visit_each.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/3rdparty/include/boost/weak_ptr.hpp +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/core/IPlugin.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/core/audio/IBuffer.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/core/audio/IOutput.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/core/audio/IPlayer.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/core/config.h +src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o: src/core/filestreams/IFileStream.h + diff --git a/src/contrib/alsaout/CMakeFiles/alsaout.dir/flags.make b/src/contrib/alsaout/CMakeFiles/alsaout.dir/flags.make new file mode 100644 index 000000000..45303e6a1 --- /dev/null +++ b/src/contrib/alsaout/CMakeFiles/alsaout.dir/flags.make @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.6 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -fpermissive -g -fPIC -I/usr/include/taglib -I/home/urioxis/programming/musikcube/src -I/home/urioxis/programming/musikcube/src/core -I/home/urioxis/programming/musikcube/src/3rdparty/include + +CXX_DEFINES = -Dalsaout_EXPORTS -DHAVE_BOOST -D_FILE_OFFSET_BITS=64 -D_HAVE_TAGLIB -DXML_STATIC -D_CRT_SECURE_NO_DEPRECATE -D_DEBUG + diff --git a/src/contrib/alsaout/CMakeFiles/alsaout.dir/link.txt b/src/contrib/alsaout/CMakeFiles/alsaout.dir/link.txt new file mode 100644 index 000000000..cc617f5db --- /dev/null +++ b/src/contrib/alsaout/CMakeFiles/alsaout.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -fpermissive -g -shared -Wl,-soname,libalsaout.so -o ../../../lib/libalsaout.so CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o CMakeFiles/alsaout.dir/AlsaOut.cpp.o CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o -L/home/urioxis/programming/musikcube/lib -ldl -lexpat -lboost_system -lboost_iostreams -lboost_filesystem -lboost_thread -lboost_regex -lboost_date_time -lsqlite3 ../../../lib/libmd5.a -lasound -Wl,-rpath,/home/urioxis/programming/musikcube/lib diff --git a/src/contrib/alsaout/CMakeFiles/alsaout.dir/progress.make b/src/contrib/alsaout/CMakeFiles/alsaout.dir/progress.make new file mode 100644 index 000000000..1045cb509 --- /dev/null +++ b/src/contrib/alsaout/CMakeFiles/alsaout.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 69 +CMAKE_PROGRESS_2 = 70 +CMAKE_PROGRESS_3 = 71 + diff --git a/src/contrib/alsaout/CMakeFiles/progress.make b/src/contrib/alsaout/CMakeFiles/progress.make new file mode 100644 index 000000000..b8626c4cf --- /dev/null +++ b/src/contrib/alsaout/CMakeFiles/progress.make @@ -0,0 +1 @@ +4 diff --git a/src/contrib/alsaout/CMakeLists.txt b/src/contrib/alsaout/CMakeLists.txt new file mode 100644 index 000000000..cff32f35b --- /dev/null +++ b/src/contrib/alsaout/CMakeLists.txt @@ -0,0 +1,28 @@ +set ( alsaout_SOURCES + alsaout_plugin.cpp + AlsaOut.cpp + AlsaOutBuffer.cpp + ) + +if(CMAKE_SYSTEM_NAME MATCHES "Windows") + add_definitions(-DWIN32) + if(NOT DEFINED MINGW) + + endif(NOT DEFINED MINGW) +else(CMAKE_SYSTEM_NAME MATCHES "Windows") + set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -fpermissive) +endif(CMAKE_SYSTEM_NAME MATCHES "Windows") + +add_definitions( + -DXML_STATIC + -D_CRT_SECURE_NO_DEPRECATE + -D_DEBUG +) + +#include_directories( ../../core ) +include_directories(/usr/include) + +add_library( alsaout SHARED ${alsaout_SOURCES} ) +target_link_libraries( alsaout ${musikCube_LINK_LIBS} asound) + + diff --git a/src/contrib/alsaout/Makefile b/src/contrib/alsaout/Makefile new file mode 100644 index 000000000..5a1838fa9 --- /dev/null +++ b/src/contrib/alsaout/Makefile @@ -0,0 +1,218 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.6 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canoncical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# The program to use to edit the cache. +CMAKE_EDIT_COMMAND = /usr/bin/ccmake + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/urioxis/programming/musikcube + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/urioxis/programming/musikcube + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." + /usr/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/urioxis/programming/musikcube && $(CMAKE_COMMAND) -E cmake_progress_start /home/urioxis/programming/musikcube/CMakeFiles /home/urioxis/programming/musikcube/src/contrib/alsaout/CMakeFiles/progress.make + cd /home/urioxis/programming/musikcube && $(MAKE) -f CMakeFiles/Makefile2 src/contrib/alsaout/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/urioxis/programming/musikcube/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/urioxis/programming/musikcube && $(MAKE) -f CMakeFiles/Makefile2 src/contrib/alsaout/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/urioxis/programming/musikcube && $(MAKE) -f CMakeFiles/Makefile2 src/contrib/alsaout/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/urioxis/programming/musikcube && $(MAKE) -f CMakeFiles/Makefile2 src/contrib/alsaout/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/urioxis/programming/musikcube && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +src/contrib/alsaout/CMakeFiles/alsaout.dir/rule: + cd /home/urioxis/programming/musikcube && $(MAKE) -f CMakeFiles/Makefile2 src/contrib/alsaout/CMakeFiles/alsaout.dir/rule +.PHONY : src/contrib/alsaout/CMakeFiles/alsaout.dir/rule + +# Convenience name for target. +alsaout: src/contrib/alsaout/CMakeFiles/alsaout.dir/rule +.PHONY : alsaout + +# fast build rule for target. +alsaout/fast: + cd /home/urioxis/programming/musikcube && $(MAKE) -f src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make src/contrib/alsaout/CMakeFiles/alsaout.dir/build +.PHONY : alsaout/fast + +AlsaOut.o: AlsaOut.cpp.o +.PHONY : AlsaOut.o + +# target to build an object file +AlsaOut.cpp.o: + cd /home/urioxis/programming/musikcube && $(MAKE) -f src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.o +.PHONY : AlsaOut.cpp.o + +AlsaOut.i: AlsaOut.cpp.i +.PHONY : AlsaOut.i + +# target to preprocess a source file +AlsaOut.cpp.i: + cd /home/urioxis/programming/musikcube && $(MAKE) -f src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.i +.PHONY : AlsaOut.cpp.i + +AlsaOut.s: AlsaOut.cpp.s +.PHONY : AlsaOut.s + +# target to generate assembly for a file +AlsaOut.cpp.s: + cd /home/urioxis/programming/musikcube && $(MAKE) -f src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOut.cpp.s +.PHONY : AlsaOut.cpp.s + +AlsaOutBuffer.o: AlsaOutBuffer.cpp.o +.PHONY : AlsaOutBuffer.o + +# target to build an object file +AlsaOutBuffer.cpp.o: + cd /home/urioxis/programming/musikcube && $(MAKE) -f src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.o +.PHONY : AlsaOutBuffer.cpp.o + +AlsaOutBuffer.i: AlsaOutBuffer.cpp.i +.PHONY : AlsaOutBuffer.i + +# target to preprocess a source file +AlsaOutBuffer.cpp.i: + cd /home/urioxis/programming/musikcube && $(MAKE) -f src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.i +.PHONY : AlsaOutBuffer.cpp.i + +AlsaOutBuffer.s: AlsaOutBuffer.cpp.s +.PHONY : AlsaOutBuffer.s + +# target to generate assembly for a file +AlsaOutBuffer.cpp.s: + cd /home/urioxis/programming/musikcube && $(MAKE) -f src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make src/contrib/alsaout/CMakeFiles/alsaout.dir/AlsaOutBuffer.cpp.s +.PHONY : AlsaOutBuffer.cpp.s + +alsaout_plugin.o: alsaout_plugin.cpp.o +.PHONY : alsaout_plugin.o + +# target to build an object file +alsaout_plugin.cpp.o: + cd /home/urioxis/programming/musikcube && $(MAKE) -f src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.o +.PHONY : alsaout_plugin.cpp.o + +alsaout_plugin.i: alsaout_plugin.cpp.i +.PHONY : alsaout_plugin.i + +# target to preprocess a source file +alsaout_plugin.cpp.i: + cd /home/urioxis/programming/musikcube && $(MAKE) -f src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.i +.PHONY : alsaout_plugin.cpp.i + +alsaout_plugin.s: alsaout_plugin.cpp.s +.PHONY : alsaout_plugin.s + +# target to generate assembly for a file +alsaout_plugin.cpp.s: + cd /home/urioxis/programming/musikcube && $(MAKE) -f src/contrib/alsaout/CMakeFiles/alsaout.dir/build.make src/contrib/alsaout/CMakeFiles/alsaout.dir/alsaout_plugin.cpp.s +.PHONY : alsaout_plugin.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... alsaout" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... AlsaOut.o" + @echo "... AlsaOut.i" + @echo "... AlsaOut.s" + @echo "... AlsaOutBuffer.o" + @echo "... AlsaOutBuffer.i" + @echo "... AlsaOutBuffer.s" + @echo "... alsaout_plugin.o" + @echo "... alsaout_plugin.i" + @echo "... alsaout_plugin.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/urioxis/programming/musikcube && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/src/contrib/alsaout/alsaout_plugin.cpp b/src/contrib/alsaout/alsaout_plugin.cpp new file mode 100644 index 000000000..bdc9a7804 --- /dev/null +++ b/src/contrib/alsaout/alsaout_plugin.cpp @@ -0,0 +1,71 @@ +////////////////////////////////////////////////////////////////////////////// +// +// License Agreement: +// +// The following are Copyright © 2009, Julian Cromarty +// +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// * Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// +// * Neither the name of the author nor the names of other contributors may +// be used to endorse or promote products derived from this software +// without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. +// +////////////////////////////////////////////////////////////////////////////// + +#include "pch.h" + +#include +#include "AlsaOut.h" + +class AlsaOutPlugin : public musik::core::IPlugin +{ + void Destroy() { delete this; }; + + const utfchar* Name() { return TEXT("AlsaOut output plugin"); }; + const utfchar* Version() { return TEXT("1"); }; + const utfchar* Author() { return TEXT("Julian Cromarty"); }; +}; + +extern "C" { + musik::core::IPlugin* GetPlugin() + { + return new AlsaOutPlugin(); + } +} + +/* +extern "C" { + musik::core::audio::IAudioOutputSupplier* CreateAudioOutputSupplier() + { + return new AlsaOutSupplier(); + } +}*/ + +extern "C" { + musik::core::audio::IOutput* GetAudioOutput() + { + return new AlsaOut(); + } +} diff --git a/src/contrib/alsaout/cmake_install.cmake b/src/contrib/alsaout/cmake_install.cmake new file mode 100644 index 000000000..811f260db --- /dev/null +++ b/src/contrib/alsaout/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/urioxis/programming/musikcube/src/contrib/alsaout + +# Set the install prefix +IF(NOT DEFINED CMAKE_INSTALL_PREFIX) + SET(CMAKE_INSTALL_PREFIX "/usr/local") +ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX) +STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +IF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + IF(BUILD_TYPE) + STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + ELSE(BUILD_TYPE) + SET(CMAKE_INSTALL_CONFIG_NAME "DEBUG") + ENDIF(BUILD_TYPE) + MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + +# Set the component getting installed. +IF(NOT CMAKE_INSTALL_COMPONENT) + IF(COMPONENT) + MESSAGE(STATUS "Install component: \"${COMPONENT}\"") + SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + ELSE(COMPONENT) + SET(CMAKE_INSTALL_COMPONENT) + ENDIF(COMPONENT) +ENDIF(NOT CMAKE_INSTALL_COMPONENT) + +# Install shared libraries without execute permission? +IF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + SET(CMAKE_INSTALL_SO_NO_EXE "0") +ENDIF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + diff --git a/src/contrib/alsaout/pch.h b/src/contrib/alsaout/pch.h new file mode 100644 index 000000000..327f46f95 --- /dev/null +++ b/src/contrib/alsaout/pch.h @@ -0,0 +1,42 @@ +////////////////////////////////////////////////////////////////////////////// +// +// License Agreement: +// +// The following are Copyright � 2008, Bj�rn Olievier +// +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// * Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// +// * Neither the name of the author nor the names of other contributors may +// be used to endorse or promote products derived from this software +// without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. +// +////////////////////////////////////////////////////////////////////////////// + +// Precompiled headers +#pragma once + +#include + +#include diff --git a/src/contrib/apedecoder/CMakeLists.txt b/src/contrib/apedecoder/CMakeLists.txt new file mode 100644 index 000000000..d8c80bda8 --- /dev/null +++ b/src/contrib/apedecoder/CMakeLists.txt @@ -0,0 +1,26 @@ +set ( apedecoder_SOURCES + apedecoder_plugin.cpp + APEDecoder.cpp + APESourceSupplier.cpp + stdafx.cpp + ) + +if(CMAKE_SYSTEM_NAME MATCHES "Windows") + add_definitions(-DWIN32) + if(NOT DEFINED MINGW) + + endif(NOT DEFINED MINGW) +else(CMAKE_SYSTEM_NAME MATCHES "Windows") + set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -fpermissive) +endif(CMAKE_SYSTEM_NAME MATCHES "Windows") + +add_definitions( + -DXML_STATIC + -D_CRT_SECURE_NO_DEPRECATE + -D_DEBUG +) + +add_library( apedecoder SHARED ${apedecoder_SOURCES} ) +target_link_libraries( apedecoder ${musikCube_LINK_LIBS}) + + diff --git a/src/contrib/bpm_analyzer/CMakeLists.txt b/src/contrib/bpm_analyzer/CMakeLists.txt new file mode 100644 index 000000000..37638c040 --- /dev/null +++ b/src/contrib/bpm_analyzer/CMakeLists.txt @@ -0,0 +1,25 @@ +set ( bpm_analyzer_SOURCES + bpm_analyzer_plugin.cpp + BPMAnalyzer.cpp + pch.cpp + ) + +if(CMAKE_SYSTEM_NAME MATCHES "Windows") + add_definitions(-DWIN32) + if(NOT DEFINED MINGW) + + endif(NOT DEFINED MINGW) +else(CMAKE_SYSTEM_NAME MATCHES "Windows") + set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -fpermissive) +endif(CMAKE_SYSTEM_NAME MATCHES "Windows") + +add_definitions( + -DXML_STATIC + -D_CRT_SECURE_NO_DEPRECATE + -D_DEBUG +) + +add_library( bpm_analyzer SHARED ${bpm_analyzer_SOURCES} ) +target_link_libraries( bpm_analyzer ${musikCube_LINK_LIBS}) + + diff --git a/src/contrib/dsp_example_echo/CMakeLists.txt b/src/contrib/dsp_example_echo/CMakeLists.txt new file mode 100644 index 000000000..85b45f791 --- /dev/null +++ b/src/contrib/dsp_example_echo/CMakeLists.txt @@ -0,0 +1,25 @@ +set ( dsp_example_echo_SOURCES + dsp_echo_plugin.cpp + DSPEcho.cpp + pch.cpp + ) + +if(CMAKE_SYSTEM_NAME MATCHES "Windows") + add_definitions(-DWIN32) + if(NOT DEFINED MINGW) + + endif(NOT DEFINED MINGW) +else(CMAKE_SYSTEM_NAME MATCHES "Windows") + set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -fpermissive) +endif(CMAKE_SYSTEM_NAME MATCHES "Windows") + +add_definitions( + -DXML_STATIC + -D_CRT_SECURE_NO_DEPRECATE + -D_DEBUG +) + +add_library( dsp_example_echo SHARED ${dsp_example_echo_SOURCES} ) +target_link_libraries( dsp_example_echo ${musikCube_LINK_LIBS}) + + diff --git a/src/contrib/flacdecoder/CMakeLists.txt b/src/contrib/flacdecoder/CMakeLists.txt new file mode 100644 index 000000000..773bd9d87 --- /dev/null +++ b/src/contrib/flacdecoder/CMakeLists.txt @@ -0,0 +1,26 @@ +set ( flacdecoder_SOURCES + FLACDecoder.cpp + FLACSourceSupplier.cpp + flacdecoder_plugin.cpp + stdafx.cpp + ) + +if(CMAKE_SYSTEM_NAME MATCHES "Windows") + add_definitions(-DWIN32) + if(NOT DEFINED MINGW) + + endif(NOT DEFINED MINGW) +else(CMAKE_SYSTEM_NAME MATCHES "Windows") + set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -fpermissive) +endif(CMAKE_SYSTEM_NAME MATCHES "Windows") + +add_definitions( + -DXML_STATIC + -D_CRT_SECURE_NO_DEPRECATE + -D_DEBUG +) + +add_library( flacdecoder SHARED ${flacdecoder_SOURCES} ) +target_link_libraries( flacdecoder ${musikCube_LINK_LIBS}) + + diff --git a/src/contrib/flacdecoder/FLACDecoder.cpp b/src/contrib/flacdecoder/FLACDecoder.cpp index de555f0ea..13f4bcd06 100644 --- a/src/contrib/flacdecoder/FLACDecoder.cpp +++ b/src/contrib/flacdecoder/FLACDecoder.cpp @@ -1,38 +1,41 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright 2007, mC2 team +// Copyright � 2007, mC2 team // // All rights reserved. // -// Redistribution and use in source and binary forms, with or without +// Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // -// * Redistributions in binary form must reproduce the above copyright -// notice, this list of conditions and the following disclaimer in the +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // -// * Neither the name of the author nor the names of other contributors may -// be used to endorse or promote products derived from this software -// without specific prior written permission. +// * Neither the name of the author nor the names of other contributors may +// be used to endorse or promote products derived from this software +// without specific prior written permission. // -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -// POSSIBILITY OF SUCH DAMAGE. +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. // ////////////////////////////////////////////////////////////////////////////// -#include "StdAfx.h" +#include "stdafx.h" #include "FLACDecoder.h" -#include +#include +#ifndef WIN32 +#include //needed for mempcpy +#endif FLACDecoder::FLACDecoder() :decoder(NULL) @@ -123,7 +126,7 @@ bool FLACDecoder::Open(musik::core::filestreams::IFileStream *fileStream){ if(init_status == FLAC__STREAM_DECODER_INIT_STATUS_OK) { // Process until we have metadata FLAC__stream_decoder_process_until_end_of_metadata(this->decoder); - return true; + return true; } return false; @@ -161,7 +164,9 @@ FLAC__StreamDecoderWriteStatus FLACDecoder::FlacWrite(const FLAC__StreamDecoder if(thisPtr->outputBuffer && thisPtr->outputBufferSize>0){ float *oldBuffer = thisPtr->outputBuffer; thisPtr->outputBuffer = new float[nofSamples+thisPtr->outputBufferSize]; - CopyMemory(thisPtr->outputBuffer, oldBuffer, thisPtr->outputBufferSize * sizeof(float)); +#ifdef WIN32 CopyMemory(thisPtr->outputBuffer, oldBuffer, thisPtr->outputBufferSize * sizeof(float)); +#else /*GNU*/ mempcpy(thisPtr->outputBuffer, oldBuffer, thisPtr->outputBufferSize * sizeof(float)); +#endif //WIN32 delete oldBuffer; } @@ -216,7 +221,7 @@ double FLACDecoder::SetPosition(double seconds,double totalLength){ //bool FLACDecoder::GetBuffer(float ** ppBuffer, unsigned long * NumSamples){ bool FLACDecoder::GetBuffer(IBuffer *buffer){ - + buffer->SetSampleRate(this->sampleRate); buffer->SetChannels(this->channels); diff --git a/src/contrib/flacdecoder/FLACDecoder.h b/src/contrib/flacdecoder/FLACDecoder.h index c10d73f1e..85aed2b7e 100644 --- a/src/contrib/flacdecoder/FLACDecoder.h +++ b/src/contrib/flacdecoder/FLACDecoder.h @@ -1,39 +1,39 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright 2007, mC2 team +// Copyright � 2007, mC2 team // // All rights reserved. // -// Redistribution and use in source and binary forms, with or without +// Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // -// * Redistributions in binary form must reproduce the above copyright -// notice, this list of conditions and the following disclaimer in the +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // -// * Neither the name of the author nor the names of other contributors may -// be used to endorse or promote products derived from this software -// without specific prior written permission. +// * Neither the name of the author nor the names of other contributors may +// be used to endorse or promote products derived from this software +// without specific prior written permission. // -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -// POSSIBILITY OF SUCH DAMAGE. +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. // ////////////////////////////////////////////////////////////////////////////// #pragma once #include -#include "FLAC/stream_decoder.h" +#include #include @@ -42,11 +42,11 @@ using namespace musik::core::audio; class FLACDecoder : public IDecoder { -public: +public: FLACDecoder(); ~FLACDecoder(); -public: +public: virtual void Destroy(); virtual double SetPosition(double seconds,double totalLength); virtual bool GetBuffer(IBuffer *buffer); @@ -71,7 +71,7 @@ public: static void FlacError(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *clientData); -protected: +protected: musik::core::filestreams::IFileStream *fileStream; FLAC__StreamDecoder *decoder; diff --git a/src/contrib/flacdecoder/flacdecoder_plugin.cpp b/src/contrib/flacdecoder/flacdecoder_plugin.cpp index 4efdd792e..5f129b6f2 100644 --- a/src/contrib/flacdecoder/flacdecoder_plugin.cpp +++ b/src/contrib/flacdecoder/flacdecoder_plugin.cpp @@ -2,7 +2,7 @@ // // License Agreement: // -// The following are Copyright 2008, Daniel nnerby +// The following are Copyright � 2008, Daniel �nnerby // // All rights reserved. // @@ -40,10 +40,12 @@ #include "FLACSourceSupplier.h" +#ifdef WIN32 BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) { return true; } +#endif //WIN32 class FLACDecoderPlugin : public musik::core::IPlugin { @@ -51,15 +53,31 @@ class FLACDecoderPlugin : public musik::core::IPlugin const utfchar* Name() { return TEXT("FLAC decoder"); }; const utfchar* Version() { return TEXT("1"); }; - const utfchar* Author() { return TEXT("Daniel nnerby"); }; + const utfchar* Author() { return TEXT("Daniel �nnerby"); }; }; -extern "C" __declspec(dllexport) musik::core::IPlugin* GetPlugin() +#ifdef WIN32 +extern "C" __declspec(dllexport) +#else //WIN32 +extern "C" { +#endif //WIN32 +musik::core::IPlugin* GetPlugin() { return new FLACDecoderPlugin(); } +#ifndef WIN32 +} +#endif -extern "C" __declspec(dllexport) IDecoderFactory* GetDecoderFactory() +#ifdef WIN32 +extern "C" __declspec(dllexport) +#else //WIN32 +extern "C" { +#endif //WIN32 +IDecoderFactory* GetDecoderFactory() { return new FLACSourceSupplier(); } +#ifndef WIN32 +} +#endif diff --git a/src/contrib/flacdecoder/stdafx.h b/src/contrib/flacdecoder/stdafx.h index 3dd7ac1af..33c939802 100644 --- a/src/contrib/flacdecoder/stdafx.h +++ b/src/contrib/flacdecoder/stdafx.h @@ -7,4 +7,6 @@ #include +#ifdef WIN32 #include "vld/vld.h" +#endif //WIN32 diff --git a/src/contrib/httpstream/CMakeLists.txt b/src/contrib/httpstream/CMakeLists.txt new file mode 100644 index 000000000..7a419ee89 --- /dev/null +++ b/src/contrib/httpstream/CMakeLists.txt @@ -0,0 +1,27 @@ +set ( httpstream_SOURCES + httpstream_plugin.cpp + HTTPRequest.cpp + HTTPStream.cpp + HTTPStreamFactory.cpp + stdafx.cpp + ) + +if(CMAKE_SYSTEM_NAME MATCHES "Windows") + add_definitions(-DWIN32) + if(NOT DEFINED MINGW) + + endif(NOT DEFINED MINGW) +else(CMAKE_SYSTEM_NAME MATCHES "Windows") + set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -fpermissive) +endif(CMAKE_SYSTEM_NAME MATCHES "Windows") + +add_definitions( + -DXML_STATIC + -D_CRT_SECURE_NO_DEPRECATE + -D_DEBUG +) + +add_library( httpstream SHARED ${httpstream_SOURCES} ) +target_link_libraries( httpstream ${musikCube_LINK_LIBS}) + + diff --git a/src/contrib/mpg123decoder/CMakeLists.txt b/src/contrib/mpg123decoder/CMakeLists.txt new file mode 100644 index 000000000..f980f6fe8 --- /dev/null +++ b/src/contrib/mpg123decoder/CMakeLists.txt @@ -0,0 +1,26 @@ +set ( mpg123decoder_SOURCES + mp3decoder_plugin.cpp + MP3Decoder.cpp + MP3SourceSupplier.cpp + stdafx.cpp + ) + +if(CMAKE_SYSTEM_NAME MATCHES "Windows") + add_definitions(-DWIN32) + if(NOT DEFINED MINGW) + + endif(NOT DEFINED MINGW) +else(CMAKE_SYSTEM_NAME MATCHES "Windows") + set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -fpermissive) +endif(CMAKE_SYSTEM_NAME MATCHES "Windows") + +add_definitions( + -DXML_STATIC + -D_CRT_SECURE_NO_DEPRECATE + -D_DEBUG +) + +add_library( mpg123decoder SHARED ${mpg123decoder_SOURCES} ) +target_link_libraries( mpg123decoder ${musikCube_LINK_LIBS}) + + diff --git a/src/contrib/mpg123decoder/MP3Decoder.cpp b/src/contrib/mpg123decoder/MP3Decoder.cpp index 8b6b4a103..fce682b27 100644 --- a/src/contrib/mpg123decoder/MP3Decoder.cpp +++ b/src/contrib/mpg123decoder/MP3Decoder.cpp @@ -1,37 +1,37 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright 2007, Daniel nnerby +// Copyright � 2007, Daniel �nnerby // // All rights reserved. // -// Redistribution and use in source and binary forms, with or without +// Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // -// * Redistributions in binary form must reproduce the above copyright -// notice, this list of conditions and the following disclaimer in the +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // -// * Neither the name of the author nor the names of other contributors may -// be used to endorse or promote products derived from this software -// without specific prior written permission. +// * Neither the name of the author nor the names of other contributors may +// be used to endorse or promote products derived from this software +// without specific prior written permission. // -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -// POSSIBILITY OF SUCH DAMAGE. +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. // ////////////////////////////////////////////////////////////////////////////// -#include "MP3decoder.h" +#include "MP3Decoder.h" #define MP3_IN_BUFFSIZE 4096 @@ -131,7 +131,7 @@ bool MP3Decoder::GetBuffer(IBuffer *buffer){ this->sampleSize = this->cachedChannels*sizeof(float); // Format should not change - mpg123_format_none(this->decoder); + mpg123_format_none(this->decoder); // Force the encoding to float32 int e=mpg123_format(this->decoder,this->cachedRate,this->cachedChannels,MPG123_ENC_FLOAT_32); diff --git a/src/contrib/mpg123decoder/MP3Decoder.h b/src/contrib/mpg123decoder/MP3Decoder.h index 03b2daa29..fdbeb4c04 100644 --- a/src/contrib/mpg123decoder/MP3Decoder.h +++ b/src/contrib/mpg123decoder/MP3Decoder.h @@ -1,39 +1,39 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright 2007, Daniel nnerby +// Copyright � 2007, Daniel �nnerby // // All rights reserved. // -// Redistribution and use in source and binary forms, with or without +// Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // -// * Redistributions in binary form must reproduce the above copyright -// notice, this list of conditions and the following disclaimer in the +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // -// * Neither the name of the author nor the names of other contributors may -// be used to endorse or promote products derived from this software -// without specific prior written permission. +// * Neither the name of the author nor the names of other contributors may +// be used to endorse or promote products derived from this software +// without specific prior written permission. // -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -// POSSIBILITY OF SUCH DAMAGE. +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. // ////////////////////////////////////////////////////////////////////////////// #pragma once #include -#include "mpg123.h" +#include //#include #define STREAM_FEED_SIZE 1024 diff --git a/src/contrib/mpg123decoder/mp3decoder_plugin.cpp b/src/contrib/mpg123decoder/mp3decoder_plugin.cpp index e46154252..bb1ae87ca 100644 --- a/src/contrib/mpg123decoder/mp3decoder_plugin.cpp +++ b/src/contrib/mpg123decoder/mp3decoder_plugin.cpp @@ -2,7 +2,7 @@ // // License Agreement: // -// The following are Copyright 2008, Daniel nnerby +// The following are Copyright � 2008, Daniel �nnerby // // All rights reserved. // @@ -40,10 +40,12 @@ #include "MP3SourceSupplier.h" +#ifdef WIN32 BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) { return true; } +#endif class MP3DecoderPlugin : public musik::core::IPlugin { @@ -51,15 +53,31 @@ class MP3DecoderPlugin : public musik::core::IPlugin const utfchar* Name() { return TEXT("mpg123 decoder"); }; const utfchar* Version() { return TEXT("1"); }; - const utfchar* Author() { return TEXT("Daniel nnerby"); }; + const utfchar* Author() { return TEXT("Daniel �nnerby"); }; }; -extern "C" __declspec(dllexport) musik::core::IPlugin* GetPlugin() +#ifdef WIN32 +extern "C" __declspec(dllexport) +#else +extern "C" { +#endif +musik::core::IPlugin* GetPlugin() { return new MP3DecoderPlugin(); } +#ifndef WIN32 +} +#endif -extern "C" __declspec(dllexport) IDecoderFactory* GetDecoderFactory() +#ifdef WIN32 +extern "C" __declspec(dllexport) +#else +extern "C" { +#endif +IDecoderFactory* GetDecoderFactory() { return new MP3SourceSupplier(); } +#ifndef WIN32 +} +#endif diff --git a/src/contrib/mpg123decoder/stdafx.h b/src/contrib/mpg123decoder/stdafx.h index d0f94f449..61b4a376d 100644 --- a/src/contrib/mpg123decoder/stdafx.h +++ b/src/contrib/mpg123decoder/stdafx.h @@ -7,7 +7,9 @@ #include -#include #include +#ifdef WIN32 +#include #include "vld/vld.h" +#endif //WIN32 diff --git a/src/contrib/oggdecoder/CMakeLists.txt b/src/contrib/oggdecoder/CMakeLists.txt new file mode 100644 index 000000000..3f0c08ca2 --- /dev/null +++ b/src/contrib/oggdecoder/CMakeLists.txt @@ -0,0 +1,26 @@ +set ( oggdecoder_SOURCES + oggdecoder_plugin.cpp + OGGDecoder.cpp + OggSourceSupplier.cpp + stdafx.cpp + ) + +if(CMAKE_SYSTEM_NAME MATCHES "Windows") + add_definitions(-DWIN32) + if(NOT DEFINED MINGW) + + endif(NOT DEFINED MINGW) +else(CMAKE_SYSTEM_NAME MATCHES "Windows") + set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -fpermissive) +endif(CMAKE_SYSTEM_NAME MATCHES "Windows") + +add_definitions( + -DXML_STATIC + -D_CRT_SECURE_NO_DEPRECATE + -D_DEBUG +) + +add_library( oggdecoder SHARED ${oggdecoder_SOURCES} ) +target_link_libraries( oggdecoder ${musikCube_LINK_LIBS}) + + diff --git a/src/contrib/taglib_plugin/CMakeLists.txt b/src/contrib/taglib_plugin/CMakeLists.txt new file mode 100644 index 000000000..beab3df85 --- /dev/null +++ b/src/contrib/taglib_plugin/CMakeLists.txt @@ -0,0 +1,25 @@ +set ( taglib_plugin_SOURCES + taglib_plugin.cpp + TagReaderTaglib.cpp + stdafx.cpp + ) + +if(CMAKE_SYSTEM_NAME MATCHES "Windows") + add_definitions(-DWIN32) + if(NOT DEFINED MINGW) + + endif(NOT DEFINED MINGW) +else(CMAKE_SYSTEM_NAME MATCHES "Windows") + set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -fpermissive) +endif(CMAKE_SYSTEM_NAME MATCHES "Windows") + +add_definitions( + -DXML_STATIC + -D_CRT_SECURE_NO_DEPRECATE + -D_DEBUG +) + +add_library( taglib_plugin SHARED ${taglib_plugin_SOURCES} ) +target_link_libraries( taglib_plugin ${musikCube_LINK_LIBS}) + + diff --git a/src/contrib/taglib_plugin/TagReaderTaglib.cpp b/src/contrib/taglib_plugin/TagReaderTaglib.cpp index 16f08caed..6134df096 100644 --- a/src/contrib/taglib_plugin/TagReaderTaglib.cpp +++ b/src/contrib/taglib_plugin/TagReaderTaglib.cpp @@ -2,7 +2,7 @@ // // License Agreement: // -// The following are Copyright 2008, Daniel nnerby +// The following are Copyright � 2008, Daniel �nnerby // // All rights reserved. // @@ -36,6 +36,7 @@ #include "TagReaderTaglib.h" +#ifndef _HAVE_TAGLIB #include #include @@ -55,6 +56,27 @@ #include #include +#else //_HAVE_TAGLIB +#include +#include + +#include +#include +#include + +#include + +#include +#include + +#include +#include +#include +#include +#include + +#include +#endif //_HAVE_TAGLIB #include #include @@ -102,7 +124,7 @@ bool TagReaderTaglib::ReadTag(musik::core::ITrack *track){ if(extension){ utfstring ext(extension); boost::algorithm::to_lower(ext); // Convert to lower case - + if(ext==UTF("mp3")) if(this->GetID3v2Tag(track)){ // Get the generic tag as well, just in case there is only a id3v1 tag. @@ -205,7 +227,8 @@ bool TagReaderTaglib::GetID3v2Tag(musik::core::ITrack *track){ // Split TRCK to track and totaltracks std::vector splitTrack; if(!aAllTags["TRCK"].isEmpty()){ - boost::algorithm::split(splitTrack,aAllTags["TRCK"].front()->toString().toWString(),boost::algorithm::is_any_of(_T("/"))); + TagLib::wstring tempTrack = aAllTags["TRCK"].front()->toString().toWString(); + boost::algorithm::split(splitTrack,tempTrack,boost::algorithm::is_any_of(UTF("/"))); this->SetTagValue("track",splitTrack[0].c_str(),track); if(splitTrack.size()>1){ this->SetTagValue("totaltracks",splitTrack[1].c_str(),track); @@ -293,9 +316,9 @@ bool TagReaderTaglib::GetID3v2Tag(musik::core::ITrack *track){ if(description.empty()){ this->SetTagValue("comment",comment->toString(),track); - }else if(description==_T("MusicMatch_Mood")){ + }else if(strcmp(UTF16_TO_UTF(description).c_str(), "MusicMatch_Mood") == 0){ this->SetTagValue("mood",comment->toString(),track); - }else if(description==_T("MusicMatch_Preference")){ + }else if(strcmp(UTF16_TO_UTF(description).c_str(),"MusicMatch_Preference") == 0){ this->SetTagValue("textrating",comment->toString(),track); } } @@ -339,17 +362,17 @@ bool TagReaderTaglib::GetID3v2Tag(musik::core::ITrack *track){ void TagReaderTaglib::SetTagValue(const char* key,const TagLib::String tagString,musik::core::ITrack *track){ using namespace musik::core; std::wstring value(tagString.begin(),tagString.end()); - track->SetValue(key,value.c_str()); + track->SetValue(key,UTF16_TO_UTF(value).c_str()); } void TagReaderTaglib::SetTagValue(const char* key,const wchar_t* string,musik::core::ITrack *track){ using namespace musik::core; - track->SetValue(key,string); + track->SetValue(key,UTF16_TO_UTF(string).c_str()); } void TagReaderTaglib::SetTagValue(const char* key,const int tagInt,musik::core::ITrack *track){ - std::wstring temp = boost::str(boost::wformat(_T("%1%"))%tagInt); - track->SetValue(key,temp.c_str()); + std::wstring temp = boost::str(boost::wformat(UTF_TO_UTF16("%1%"))%tagInt); + track->SetValue(key,UTF16_TO_UTF(temp).c_str()); } @@ -360,7 +383,7 @@ void TagReaderTaglib::SetTagValues(const char* key,const TagLib::ID3v2::FrameLis TagLib::String tagString = (*value)->toString(); if( !tagString.isEmpty() ){ std::wstring value(tagString.begin(),tagString.end()); - track->SetValue(key,value.c_str()); + track->SetValue(key,UTF16_TO_UTF(value).c_str()); } } } @@ -383,15 +406,15 @@ bool TagReaderTaglib::getStandardTags(musik::core::ITrack &track,TagLib::Tag *oT return true; } */ -void TagReaderTaglib::SetSlashSeparatedValues(const char* key,TagLib::String &tagString,musik::core::ITrack *track){ +void TagReaderTaglib::SetSlashSeparatedValues(const char* key,TagLib::String tagString,musik::core::ITrack *track){ if( !tagString.isEmpty() ){ std::wstring value(tagString.begin(),tagString.end()); std::vector splitValues; - boost::algorithm::split(splitValues,value,boost::algorithm::is_any_of(_T("/"))); + boost::algorithm::split(splitValues,value,boost::algorithm::is_any_of(UTF("/"))); for(std::vector::iterator theValue=splitValues.begin();theValue!=splitValues.end();++theValue){ - track->SetValue(key,theValue->c_str()); + track->SetValue(key,UTF16_TO_UTF(theValue->c_str()).c_str()); } } } @@ -418,18 +441,18 @@ void TagReaderTaglib::SetSlashSeparatedValues(const char* key,const TagLib::ID3v void TagReaderTaglib::SetAudioProperties(TagLib::AudioProperties *audioProperties,musik::core::ITrack *track){ if(audioProperties){ - std::wstring duration = boost::str(boost::wformat(_T("%1%"))%audioProperties->length()); + std::wstring duration = boost::str(boost::wformat(UTF_TO_UTF16("%1%"))%audioProperties->length()); this->SetTagValue("duration",duration,track); int bitrate( audioProperties->bitrate() ); if(bitrate){ - std::wstring temp( boost::str(boost::wformat(_T("%1%"))%bitrate ) ); + std::wstring temp( boost::str(boost::wformat(UTF_TO_UTF16("%1%"))%bitrate ) ); this->SetTagValue("bitrate",temp,track); } int channels( audioProperties->channels() ); if(channels){ - std::wstring temp( boost::str(boost::wformat(_T("%1%"))%channels ) ); + std::wstring temp( boost::str(boost::wformat(UTF_TO_UTF16("%1%"))%channels ) ); this->SetTagValue("channels",temp,track); } } diff --git a/src/contrib/taglib_plugin/TagReaderTaglib.h b/src/contrib/taglib_plugin/TagReaderTaglib.h index 394aec7eb..0daa7eb8c 100644 --- a/src/contrib/taglib_plugin/TagReaderTaglib.h +++ b/src/contrib/taglib_plugin/TagReaderTaglib.h @@ -2,7 +2,7 @@ // // License Agreement: // -// The following are Copyright 2008, Daniel nnerby +// The following are Copyright � 2008, Daniel �nnerby // // All rights reserved. // @@ -38,6 +38,7 @@ #include "stdafx.h" +#ifndef _HAVE_TAGLIB #include #include @@ -46,11 +47,22 @@ #include #include +#else //_HAVE_TAGLIB +#include +#include + +#include +#include +#include + +#include +#endif //_HAVE_TAGLIB #include #include +#include class TagReaderTaglib : public musik::core::Plugin::IMetaDataReader { public: @@ -69,7 +81,7 @@ class TagReaderTaglib : public musik::core::Plugin::IMetaDataReader { void SetAudioProperties(TagLib::AudioProperties *audioProperties,musik::core::ITrack *track); void SetSlashSeparatedValues(const char* key,const TagLib::ID3v2::FrameList &frame,musik::core::ITrack *track); - void SetSlashSeparatedValues(const char* key,TagLib::String &tagString,musik::core::ITrack *track); + void SetSlashSeparatedValues(const char* key,TagLib::String tagString,musik::core::ITrack *track); bool GetID3v2Tag(musik::core::ITrack *track); bool GetGenericTag(musik::core::ITrack *track); diff --git a/src/contrib/taglib_plugin/stdafx.h b/src/contrib/taglib_plugin/stdafx.h index f12267625..e3e21bb92 100644 --- a/src/contrib/taglib_plugin/stdafx.h +++ b/src/contrib/taglib_plugin/stdafx.h @@ -5,15 +5,16 @@ #pragma once +#ifdef WIN32 // Modify the following defines if you have to target a platform prior to the ones specified below. // Refer to MSDN for the latest info on corresponding values for different platforms. #ifndef WINVER // Allow use of features specific to Windows XP or later. #define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows. #endif -#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later. +#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later. #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows. -#endif +#endif #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later. #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later. @@ -28,3 +29,4 @@ #include #include "vld/vld.h" +#endif //WIN32 diff --git a/src/contrib/taglib_plugin/taglib_plugin.cpp b/src/contrib/taglib_plugin/taglib_plugin.cpp index ca8451479..db5c488cb 100644 --- a/src/contrib/taglib_plugin/taglib_plugin.cpp +++ b/src/contrib/taglib_plugin/taglib_plugin.cpp @@ -2,7 +2,7 @@ // // License Agreement: // -// The following are Copyright 2008, Daniel nnerby +// The following are Copyright � 2008, Daniel �nnerby // // All rights reserved. // @@ -38,9 +38,17 @@ #include "stdafx.h" #include "TagReaderTaglib.h" #include "core/IPlugin.h" +#ifndef _HAVE_TAGLIB #include +#else +#include +#endif +#ifdef WIN32 #define DLLEXPORT __declspec(dllexport) +#else +#define DLLEXPORT +#endif ////////////////////////////////////////// @@ -54,7 +62,7 @@ class TaglibBugFix : TagLib::ID3v2::FrameFactory{ }; }; - +#ifdef WIN32 BOOL APIENTRY DllMain( HMODULE hModule,DWORD ul_reason_for_call,LPVOID lpReserved){ if(ul_reason_for_call==DLL_PROCESS_DETACH){ TaglibBugFix *ff = (TaglibBugFix*)TagLib::ID3v2::FrameFactory::instance(); @@ -62,6 +70,7 @@ BOOL APIENTRY DllMain( HMODULE hModule,DWORD ul_reason_for_call,LPVOID lpReserv } return TRUE; } +#endif //WIN32 //TagReaderTaglib tagreader; @@ -69,16 +78,16 @@ class TaglibPlugin : public musik::core::IPlugin { void Destroy() { delete this; }; - const wchar_t* Name(){ - return _T("Taglib 1.5 plugin"); + const utfchar* Name(){ + return UTF("Taglib 1.5 plugin"); }; - const wchar_t* Version(){ - return _T("0.1"); + const utfchar* Version(){ + return UTF("0.1"); }; - const wchar_t* Author(){ - return _T("Daniel nnerby"); + const utfchar* Author(){ + return UTF("Daniel �nnerby"); }; }; diff --git a/src/contrib/waveout/CMakeLists.txt b/src/contrib/waveout/CMakeLists.txt new file mode 100644 index 000000000..7f3eaba8a --- /dev/null +++ b/src/contrib/waveout/CMakeLists.txt @@ -0,0 +1,28 @@ +set ( waveout_SOURCES + WaveOut.cpp + WaveOutBuffer.cpp + pch.cpp + waveout_plugin.cpp + ) + +if(CMAKE_SYSTEM_NAME MATCHES "Windows") + add_definitions(-DWIN32) + if(NOT DEFINED MINGW) + + endif(NOT DEFINED MINGW) +else(CMAKE_SYSTEM_NAME MATCHES "Windows") + set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -fpermissive) +endif(CMAKE_SYSTEM_NAME MATCHES "Windows") + +add_definitions( + -DXML_STATIC + -D_CRT_SECURE_NO_DEPRECATE + -D_DEBUG +) + +#include_directories( ../../core ) + +add_library( waveout SHARED ${waveout_SOURCES} ) +target_link_libraries( waveout ${musikCube_LINK_LIBS}) + + diff --git a/src/contrib/waveout/WaveOutBuffer.h b/src/contrib/waveout/WaveOutBuffer.h index 29c5c2de0..9be36a80c 100644 --- a/src/contrib/waveout/WaveOutBuffer.h +++ b/src/contrib/waveout/WaveOutBuffer.h @@ -34,7 +34,11 @@ #include #include -#include "Mmsystem.h" +#ifdef WIN32 + #include "Mmsystem.h" +#else + #include +#endif ////////////////////////////////////////////////////////////////////////////// // Forward declare class WaveOut; diff --git a/src/contrib/waveout/pch.h b/src/contrib/waveout/pch.h index 730ad422c..4db27253f 100644 --- a/src/contrib/waveout/pch.h +++ b/src/contrib/waveout/pch.h @@ -39,9 +39,16 @@ #include -#include -#include -#include -#include +#ifdef WIN32 + #include + #include + #include + #include -#include "vld/vld.h" + #include "vld/vld.h" + +#else + + #include + +#endif //WIN32 diff --git a/src/contrib/waveout/waveout_plugin.cpp b/src/contrib/waveout/waveout_plugin.cpp index 0e9fd1655..e98fe132c 100644 --- a/src/contrib/waveout/waveout_plugin.cpp +++ b/src/contrib/waveout/waveout_plugin.cpp @@ -2,7 +2,7 @@ // // License Agreement: // -// The following are Copyright 2008, Bjrn Olievier +// The following are Copyright � 2008, Bj�rn Olievier // // All rights reserved. // @@ -39,7 +39,6 @@ #include #include "WaveOut.h" - BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) { return true; @@ -51,7 +50,7 @@ class WaveOutPlugin : public musik::core::IPlugin const utfchar* Name() { return TEXT("WaveOut output plugin"); }; const utfchar* Version() { return TEXT("1"); }; - const utfchar* Author() { return TEXT("Bjrn Olievier"); }; + const utfchar* Author() { return TEXT("Bj�rn Olievier"); }; }; extern "C" __declspec(dllexport) musik::core::IPlugin* GetPlugin() diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 76e5d1764..bef816b92 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -36,7 +36,6 @@ set(CORE_SOURCES audio/Stream.cpp audio/Transport.cpp server/Connection.cpp - Server.cpp server/User.cpp server/UserSession.cpp xml/Node.cpp @@ -56,6 +55,8 @@ set(CORE_SOURCES LibraryTrack.cpp Track.cpp TrackFactory.cpp + Server.cpp + Server.h ) if(CMAKE_SYSTEM_NAME MATCHES "Windows") @@ -71,7 +72,6 @@ include_directories( .. ../3rdparty/include ../3rdparty/include/jpeg-6b - ) add_definitions( @@ -80,5 +80,7 @@ add_definitions( -D_DEBUG ) -add_library( core SHARED ${CORE_SOURCES} ) +add_library( musik SHARED ${CORE_SOURCES} ) +target_link_libraries( musik ${musikCube_LINK_LIBS}) + diff --git a/src/core/PluginFactory.cpp b/src/core/PluginFactory.cpp index 87707f07e..84a2e691c 100644 --- a/src/core/PluginFactory.cpp +++ b/src/core/PluginFactory.cpp @@ -2,7 +2,7 @@ // // License Agreement: // -// The following are Copyright 2008, Daniel nnerby +// The following are Copyright � 2008, Daniel �nnerby // // All rights reserved. // @@ -49,13 +49,17 @@ PluginFactory::PluginFactory(void){ } PluginFactory::~PluginFactory(void){ - for (size_t i=0; iloadedPlugins.size(); ++i) { this->loadedPlugins[i]->Destroy(); } - this->loadedPlugins.clear(); - + //this->loadedPlugins.clear(); //This causes a segmentation fault on linux due to loadedPlugins being already empty. Jooles + //Also somewhere here is another seg fault that only seems to occur when the program is run from within its directory + //eg. cd'ing to musikCube/bin and running square then quitting segfaults here. cd'ing to musikCube and running + // bin/square then quitting works fine.. Any ideas anyone? Jooles +#ifdef _DEBUG + std::cerr << "Unloading DLLs" << std::endl; +#endif // Unload dlls for(std::vector::iterator oDLL=this->loadedDLLs.begin();oDLL!=this->loadedDLLs.end();){ #ifdef WIN32 @@ -109,12 +113,16 @@ void PluginFactory::LoadPlugins(){ char* err; if ((err = dlerror()) != NULL) { std::cerr << "Couldn't open shared library " << sFile << std::endl; + std::cerr << "Error: " << err << std::endl; } else { - IPlugin* getPluginCall = (IPlugin*)dlsym(oDLL,"GetPlugin"); - if(getPluginCall){ - this->loadedPlugins.push_back(getPluginCall); + IPlugin* getPluginCall = (IPlugin*)dlsym(oDLL,"GetPlugin"); + if(getPluginCall){ + this->loadedPlugins.push_back(getPluginCall); this->loadedDLLs.push_back(oDLL); +#ifdef _DEBUG + std::cout << "Shared library " << sFile.c_str() << " loaded and opened." << std::endl; +#endif } else { dlclose(oDLL); diff --git a/src/core/PluginFactory.h b/src/core/PluginFactory.h index 86d26f84f..bc80d7d46 100644 --- a/src/core/PluginFactory.h +++ b/src/core/PluginFactory.h @@ -2,7 +2,7 @@ // // License Agreement: // -// The following are Copyright 2008, Daniel nnerby +// The following are Copyright � 2008, Daniel �nnerby // // All rights reserved. // @@ -105,23 +105,20 @@ namespace musik{ namespace core{ Iterator currentDll = allDlls.begin(); while (currentDll != allDlls.end()){ - PluginInterfaceCall funcPtr = + PluginInterfaceCall funcPtr = #ifdef WIN32 (PluginInterfaceCall) GetProcAddress((HMODULE)(*currentDll), functionName); #else - (PluginInterfaceCall) dlsym(*currentDll, functionName); + (PluginInterfaceCall) dlsym(*currentDll, functionName); #endif //WIN32 - if(funcPtr) { - T* result = funcPtr(); - if (result) { - plugins.push_back(boost::shared_ptr(result, D())); - } - - } - - currentDll++; + if(funcPtr) { + T* result = funcPtr(); + if (result) { + plugins.push_back(boost::shared_ptr(result, D())); + } + } + currentDll++; } - return plugins; } diff --git a/src/core/audio/IDecoder.h b/src/core/audio/IDecoder.h index 68cdd39e4..7145c51db 100644 --- a/src/core/audio/IDecoder.h +++ b/src/core/audio/IDecoder.h @@ -1,33 +1,33 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright 2007, Daniel nnerby +// Copyright � 2007, Daniel �nnerby // // All rights reserved. // -// Redistribution and use in source and binary forms, with or without +// Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // -// * Redistributions in binary form must reproduce the above copyright -// notice, this list of conditions and the following disclaimer in the +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // -// * Neither the name of the author nor the names of other contributors may -// be used to endorse or promote products derived from this software -// without specific prior written permission. +// * Neither the name of the author nor the names of other contributors may +// be used to endorse or promote products derived from this software +// without specific prior written permission. // -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -// POSSIBILITY OF SUCH DAMAGE. +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. // ////////////////////////////////////////////////////////////////////////////// #pragma once @@ -42,13 +42,13 @@ namespace musik { namespace core { namespace audio { class IDecoder{ - public: + public: ////////////////////////////////////////// ///\brief ///Destroy the object /// - ///The Destroy method is used so that it's guaranteed that the object is + ///The Destroy method is used so that it's guaranteed that the object is ///destroyed inside the right DLL/exe ////////////////////////////////////////// virtual void Destroy() = 0; @@ -64,7 +64,7 @@ class IDecoder{ ///Set the position in the source (in seconds) /// ///\returns - ///The acctual position set + ///The actual position set ////////////////////////////////////////// virtual double SetPosition(double seconds,double totalLength) = 0; diff --git a/src/core/config.h b/src/core/config.h index 2c9b1ee52..dc326bfcd 100644 --- a/src/core/config.h +++ b/src/core/config.h @@ -62,8 +62,9 @@ typedef unsigned long long UINT64; typedef long long __int64; //TODO: Is this necessary? - #define STDCALL(fp) fp __attribute__((stdcall)) + #define STDCALL(fp) fp __attribute__((stdcall)) #define _ASSERT assert + #define TEXT(s) s //There's no TEXT() on linux. This makes the current uses of it compile for me... Jooles #endif // WIN32 @@ -137,13 +138,13 @@ typedef unsigned int DBTIME; ///\brief ///utfstringstream is the stringstream for utfchar & utfstring ////////////////////////////////////////// -/* namespace std + namespace std { typedef stringstream utfstringstream; typedef ostringstream utfostringstream; typedef istringstream utfistringstream; } -*/ + #endif typedef std::basic_string utfstring; diff --git a/src/square/CMakeLists.txt b/src/square/CMakeLists.txt new file mode 100644 index 000000000..526158146 --- /dev/null +++ b/src/square/CMakeLists.txt @@ -0,0 +1,9 @@ +set (SQUARE_SRCS + stdafx.cpp + player.cpp + DummyAudioEventHandler.cpp + ConsoleUI.cpp +) + +add_executable(square ${SQUARE_SRCS}) +target_link_libraries(square ${musikCube_LINK_LIBS} musik) \ No newline at end of file