Git Product home page Git Product logo

kyleneideck / backgroundmusic Goto Github PK

View Code? Open in Web Editor NEW
15.1K 149.0 656.0 2.39 MB

Background Music, a macOS audio utility: automatically pause your music, set individual apps' volumes and record system audio.

License: GNU General Public License v2.0

Objective-C 16.04% Objective-C++ 11.71% C++ 60.76% C 5.91% Shell 4.87% TeX 0.21% Python 0.07% JavaScript 0.36% Swift 0.07%
audio audio-utility macos cpp objective-c

backgroundmusic's Introduction

Background Music

macOS audio utility

Overview
      Auto-pause music
      Application volume
      Recording system audio
Download
Run / Configure
Build and Install
Uninstall
Troubleshooting
Related Projects
License

Overview

  • Automatically pause/unpause your music player when other audio sources are playing/stopped
  • Per-application volume control
  • Record system audio
  • No restart required to install
Note: Background Music is still in alpha.

Auto-pause music

Background Music automatically pauses your music player when a second audio source is playing and unpauses the player when the second source has stopped.

The auto-pause feature currently supports following music players:

Adding support for a new music player is usually straightforward.1 If you don't know how to program, or just don't feel like it, feel free to create an issue. Otherwise, see BGMMusicPlayer.h.

Application volume

Background Music provides a volume slider for each application running your system. You can boost quiet applications above their maximum volume.

Recording system audio

You can record system audio with Background Music. With Background Music running, launch QuickTime Player and select File > New Audio Recording (or New Screen Recording, New Movie Recording). Then click the dropdown menu () next to the record button and select Background Music as the input device.

You can record system audio and a microphone together by creating an aggregate device that combines your input device (usually Built-in Input) with the Background Music device. You can create the aggregate device using the Audio MIDI Setup utility under /Applications/Utilities.

Download

Requires macOS 10.13+.

You can download the current version of Background Music using the following options. We also have snapshot builds.

Option 1

Download version 0.4.0:

BackgroundMusic-0.4.0.pkg (895 KB)

MD5: 0fc3c839939b1b55b799f3e00755d949
SHA256: f170957702c48f96c0fa9706b72f6d6048bcc87be393eb1d01289c20e1111325
PGP: sig, key (0595DF814E41A6F69334C5E2CAA8D9B8E39EC18C)

Option 2

Install using Homebrew by running the following command in Terminal:

brew install --cask background-music

If you want the latest snapshot version, run:

brew tap homebrew/cask-versions
brew install --cask background-music-pre

Run / Configure

Just run Applications > Background Music.app! Background Music sets itself as your default output device under System Settings > Sound when it starts up (and sets it back on Quit).

Launch at Startup (Optional)

Add Background Music to System Settings > General > Login Items.

Installing from Source Code

Background Music usually takes less than a minute to build. You need Xcode version 10 or higher.

Option 1

  1. Open Terminal.
  2. Copy and paste the following command into Terminal:
(set -eo pipefail; URL='https://github.com/kyleneideck/BackgroundMusic/archive/master.tar.gz'; \
    cd $(mktemp -d); echo Downloading $URL to $(pwd); curl -qfL# $URL | gzcat - | tar x && \
    /bin/bash BackgroundMusic-master/build_and_install.sh -w && rm -rf BackgroundMusic-master)
More info...

This command uses /bin/bash instead of bash in case someone has a nonstandard Bash in their $PATH. However, it doesn't do this for tar or curl. In addition, build_and_install.sh doesn't call programs by absolute paths. This command also uses gzcat - | tar x instead of tar xz because gzcat will also check the file's integrity (gzip files include a checksum), and will ensure that a half-downloaded copy of build_and_install.sh doesn't run.

Option 2

  1. Clone or download the project.
  2. If the project is in a zip, unzip it.
  3. Open Terminal and change the directory to the directory containing the project.
  4. Run: /bin/bash build_and_install.sh.

The script restarts the system audio process (coreaudiod) at the end of the installation, so pause any applications playing audio if you can.

To manually build and install, see MANUAL_INSTALL.md.

Uninstall

To uninstall Background Music from your system, follow these steps:

  1. Open Terminal.
  2. To locate uninstall.sh, run: cd /Applications/Background\ Music.app/Contents/Resources/.
  3. Run: bash uninstall.sh.

If you cannot locate uninstall.sh, you can download the project again.

To manually uninstall, see MANUAL_UNINSTALL.md.

Troubleshooting

If Background Music crashes and your audio stops working, open System Settings > Sound and change your system's default output device to something other than the Background Music device. If it already is, then change the default device and then change it back again.

Make sure you allow "microphone access" when you first run Background Music. If you denied it, go to System Settings > Security & Privacy > Privacy > Microphone, find Background Music in the list and check the box next to it. Background Music doesn't actually listen to your microphone. It needs the permission because it gets your system audio from its virtual input device, which macOS counts as a microphone. (We're working on it in #177.)

If the volume slider for an app isn't working, try looking in More Apps for entries like Some App (Helper). For some meeting or video chat apps, you may need to do this to change the current meeting volume.

Known issues and solutions

  • Setting an application's volume above 50% can cause clipping.

    • Set your volume to its maximum level and lower the volumes of other applications.
  • Only 2-channel (stereo) audio devices are currently supported for output.

  • VLC pauses iTunes or Spotify when playing, and stops Background Music from unpausing your music afterward.

    • Under VLC's preferences, select Show All. Navigate to Interface > Main interfaces > macosx and change Control external music players to either Do nothing or Pause and resume iTunes/Spotify.
  • Skype pauses iTunes during calls.

    • To disable this, uncheck Pause iTunes during calls on the General tab of Skype's preferences.
  • Plugging in or unplugging headphones when Background Music isn't running causes silence in the system audio.

    • Navigate to System Settings > Sound. Click the Output tab and change your default output device to something other than the Background Music device. Alternatively, press Option + Click on the sound icon within the menu bar to select a different output device. This happens when macOS remembers that the Background Music device was your default audio device the last time you used (or didn't use) headphones.
  • A Chrome bug stops Chrome from switching to the Background Music device after you open Background Music.

    • Chrome's audio will still play, but Background Music won't be aware of it.
  • Some applications play notification sounds that are only just long enough to trigger an auto-pause.

    • Increase the kPauseDelayNSec constant in BGMAutoPauseMusic.mm. It will increase your music's overlap time over other audio, so don't increase it too much. See #5 for details.

Many other issues are listed in TODO.md and in GitHub Issues.

Related projects

  • Core Audio User-Space Driver Examples The sample code from Apple that BGMDriver is based on.
  • Soundflower - "MacOS system extension that allows applications to pass audio to other applications."
  • WavTap - "globally capture whatever your mac is playing—-as simply as a screenshot"
  • eqMac, GitHub - "System-wide Audio Equalizer for the Mac"
  • llaudio - "An old piece of work to reverse engineer the Mac OSX user/kernel audio interface. Shows how to read audio straight out of the kernel as you would on Darwin (where most the OSX goodness is missing)"
  • mute.fm, GitHub (Windows) - Auto-pause music
  • Jack OS X - "A Jack audio connection kit implementation for Mac OS X"
  • PulseAudio OS X - "PulseAudio for Mac OS X"
  • Sound Pusher - "Virtual audio device, real-time encoder and SPDIF forwarder for Mac OS X"
  • Zirkonium - "An infrastructure and application for multi-channel sound spatialization on MacOS X."
  • BlackHole - "a modern macOS virtual audio driver that allows applications to pass audio to other applications with zero additional latency."

Non-free

  • Audio Hijack, SoundSource - "Capture Audio From Anywhere on Your Mac", "Get truly powerful control over all the audio on your Mac!"
  • Sound Siphon, Sound Control - System/app audio recording, per-app volumes, system audio equaliser
  • SoundBunny - "Control application volume independently."
  • Boom 2 - "The Best Volume Booster & Equalizer For Mac"

License

Copyright © 2016-2024 Background Music contributors. Licensed under GPLv2, or any later version.

Background Music includes code from:


[1] However, if the music player doesn't support AppleScript, or doesn't support the events Background Music needs (isPlaying, isPaused, play and pause), it can take significantly more effort to add. (And in some cases would require changes to the music player itself.)

backgroundmusic's People

Contributors

adrenalin8231 avatar anwin-kp avatar ashleyem avatar avhn avatar dnicolson avatar findtravishere avatar foxt avatar gchilds avatar hoke-t avatar igormarques avatar kache avatar kud avatar kyleneideck avatar lawrencewarren avatar marcuswu avatar mrbaloghakos avatar muneebmahmed avatar nickjacques avatar piccirello avatar probstlukas avatar qaisjp avatar qix- avatar rakslice avatar readmecritic avatar rstad avatar shuklavk avatar sscotth avatar stenalpjolly avatar tomhodson avatar yohantz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

backgroundmusic's Issues

mpd support

should be p simple; assume the user has mpc installed and shell out to mpc toggle

Fails on El Capitan 10.11.3 (15D21)

The application cannot be opened because its executable is missing.
ERROR: Install script failed at line 207. This is probably a bug in the script. Feel free to report it.

Log:
Installing the virtual audio device �[1mBackground Music Device.driver�(B�[m to �[1m/Library/Audio/Plug-Ins/HAL�(B�[m.
Build settings from command line:
DSTROOT = /
RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET Background Music Device OF PROJECT BGMDriver WITH CONFIGURATION Release ===

Check dependencies

SetOwnerAndGroup root:wheel /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver
cd /Users/gunnard/BackgroundMusic/BGMDriver
/usr/sbin/chown -RH root:wheel /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver

SetMode u+w,go-w,a+rX /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver
cd /Users/gunnard/BackgroundMusic/BGMDriver
/bin/chmod -RH u+w,go-w,a+rX /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver

** INSTALL SUCCEEDED **

Installing �[1mBGMXPCHelper.xpc�(B�[m to �[1m/usr/local/libexec�(B�[m.
Build settings from command line:
DSTROOT = /
INSTALL_PATH = /usr/local/libexec
RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET BGMXPCHelper OF PROJECT BGMApp WITH CONFIGURATION Release ===

Check dependencies

PhaseScriptExecution Run\ Script build/BGMApp.build/Release/BGMXPCHelper.build/Script-276972891CAFCE91007A2F7C.sh
cd /Users/gunnard/BackgroundMusic/BGMApp
export ACTION=install
export ALTERNATE_GROUP=wheel
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=root
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD=x86_64
export ARCHS_STANDARD_32_64_BIT="x86_64 i386"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT=x86_64
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=bitcode
export BUILD_ACTIVE_RESOURCES_ONLY=NO
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build
export BUILD_ROOT=/Users/gunnard/BackgroundMusic/BGMApp/build
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/Release
export CACHE_ROOT=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/7.3-7D175/Xcode
export CCHROOT=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/7.3-7D175/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_SECURITY_FLOATLOOPCOUNTER=YES
export CLANG_CXX_LANGUAGE_STANDARD=c++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation
export CLANG_WARN_ASSIGN_ENUM=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_IMPLICIT_SIGN_CONVERSION=NO
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NULLABLE_TO_NONNULL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/usr/local/libexec/BGMXPCHelper.xpc
export CODE_SIGNING_ALLOWED=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPOSITE_SDK_DIRS=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/7.3-7D175/Xcode/CompositeSDKs
export CONFIGURATION=Release
export CONFIGURATION_BUILD_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/Release
export CONFIGURATION_TEMP_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release
export CONTENTS_FOLDER_PATH=BGMXPCHelper.xpc/Contents
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf-with-dsym
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=YES
export DEPLOYMENT_POSTPROCESSING=YES
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=MACOSX_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mmacosx-version-min
export DEPLOYMENT_TARGET_SETTING_NAME=MACOSX_DEPLOYMENT_TARGET
export DERIVED_FILES_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
export DERIVED_FILE_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=BGMXPCHelper.xpc.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/gunnard/BackgroundMusic/BGMApp/build/Release
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBEDDED_PROFILE_NAME=embedded.provisionprofile
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_NS_ASSERTIONS=NO
export ENABLE_ON_DEMAND_RESOURCES=NO
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=NO
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES=".nib *.lproj *.framework *.gch *.xcode .xcassets () .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Executables
export EXECUTABLE_FOLDER_PATH=BGMXPCHelper.xpc/Contents/MacOS
export EXECUTABLE_NAME=BGMXPCHelper
export EXECUTABLE_PATH=BGMXPCHelper.xpc/Contents/MacOS/BGMXPCHelper
export EXPANDED_CODE_SIGN_IDENTITY=
export EXPANDED_CODE_SIGN_IDENTITY_NAME=
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/FixedFiles
export FRAMEWORKS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/gunnard/BackgroundMusic/BGMApp/build/Release "
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=BGMXPCHelper.xpc
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=c11
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OPTIMIZATION_LEVEL=s
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=0 CoreAudio_Debug=0 CoreAudio_UseSysLog=0 CoreAudio_StopOnAssert=0"
export GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS=YES
export GCC_TREAT_WARNINGS_AS_ERRORS=YES
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS=YES
export GCC_WARN_ABOUT_MISSING_PROTOTYPES=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED=YES
export GCC_WARN_SHADOW=YES
export GCC_WARN_STRICT_SELECTOR_MATCH=YES
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_LABEL=YES
export GCC_WARN_UNUSED_PARAMETER=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=NO
export GENERATE_PROFILING_CODE=NO
export GID=0
export GROUP=wheel
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/gunnard/BackgroundMusic/BGMApp/build/Release/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/var/root
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=BGMXPCHelper/Info.plist
export INFOPLIST_OUTPUT_FORMAT=same-as-input
export INFOPLIST_PATH=BGMXPCHelper.xpc/Contents/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj/InfoPlist.strings
export INSTALL_DIR=//usr/local/libexec
export INSTALL_GROUP=wheel
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=root
export INSTALL_PATH=/usr/local/libexec
export INSTALL_ROOT=/
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelper_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/gunnard/BackgroundMusic/BGMApp/build/Release "
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelper.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MACOSX_DEPLOYMENT_TARGET=10.9
export MAC_OS_X_PRODUCT_BUILD_VERSION=15D21
export MAC_OS_X_VERSION_ACTUAL=101103
export MAC_OS_X_VERSION_MAJOR=101100
export MAC_OS_X_VERSION_MINOR=1103
export MTL_ENABLE_DEBUG_INFO=NO
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJECT_FILE_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects
export OBJECT_FILE_DIR_normal=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal
export OBJROOT=/Users/gunnard/BackgroundMusic/BGMApp/build
export ONLY_ACTIVE_ARCH=NO
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.xpc-service
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/usr/local/bin:/usr/local/sbin:/Users/gunnard/.rbenv/plugins/ruby-build/bin:/Users/gunnard/.rbenv/shims:/Users/gunnard/.rbenv/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/gunnard/.rvm/gems/ruby-2.1.6/bin:/Users/gunnard/.rvm/gems/ruby-2.1.6@global/bin:/Users/gunnard/.rvm/rubies/ruby-2.1.6/bin:/Users/gunnard/.rvm/bin"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=BGMXPCHelper.xpc/Contents/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/PkgInfo
export PKGINFO_PATH=BGMXPCHelper.xpc/Contents/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform
export PLATFORM_DISPLAY_NAME="OS X"
export PLATFORM_NAME=macosx
export PLATFORM_PREFERRED_ARCH=x86_64
export PLATFORM_PRODUCT_BUILD_VERSION=7D175
export PLIST_FILE_OUTPUT_FORMAT=same-as-input
export PLUGINS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PRIVATE_HEADERS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=com.bearisdriving.BGM.XPCHelper
export PRODUCT_MODULE_NAME=BGMXPCHelper
export PRODUCT_NAME=BGMXPCHelper
export PRODUCT_SETTINGS_PATH=/Users/gunnard/BackgroundMusic/BGMApp/BGMXPCHelper/Info.plist
export PRODUCT_TYPE=com.apple.product-type.xpc-service
export PROFILING_CODE=NO
export PROJECT=BGMApp
export PROJECT_DERIVED_FILE_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/DerivedSources
export PROJECT_DIR=/Users/gunnard/BackgroundMusic/BGMApp
export PROJECT_FILE_PATH=/Users/gunnard/BackgroundMusic/BGMApp/BGMApp.xcodeproj
export PROJECT_NAME=BGMApp
export PROJECT_TEMP_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build
export PROJECT_TEMP_ROOT=/Users/gunnard/BackgroundMusic/BGMApp/build
export PUBLIC_HEADERS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/gunnard/BackgroundMusic/BGMApp/build/Release "
export RUN_CLANG_STATIC_ANALYZER=0
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk
export SDK_DIR_macosx10_11=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk
export SDK_NAME=macosx10.11
export SDK_NAMES=macosx10.11
export SDK_PRODUCT_BUILD_VERSION=15E60
export SDK_VERSION=10.11
export SDK_VERSION_ACTUAL=101100
export SDK_VERSION_MAJOR=101100
export SDK_VERSION_MINOR=1100
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=NO
export SHARED_DERIVED_FILE_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/Release/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/SharedFrameworks
export SHARED_PRECOMPS_DIR=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/7.3-7D175/Xcode/SharedPrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=BGMXPCHelper.xpc/Contents/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/gunnard/BackgroundMusic/BGMApp
export SRCROOT=/Users/gunnard/BackgroundMusic/BGMApp
export STRINGS_FILE_OUTPUT_ENCODING=UTF-16
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=non-global
export SUPPORTED_PLATFORMS=macosx
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=macosx
export SYMROOT=/Users/gunnard/BackgroundMusic/BGMApp/build
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETNAME=BGMXPCHelper
export TARGET_BUILD_DIR=/usr/local/libexec
export TARGET_NAME=BGMXPCHelper
export TARGET_TEMP_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
export TEMP_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
export TEMP_FILES_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
export TEMP_FILE_DIR=/Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
export TEMP_ROOT=/Users/gunnard/BackgroundMusic/BGMApp/build
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=0
export UNLOCALIZED_RESOURCES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources
export UNSTRIPPED_PRODUCT=NO
export USER=root
export USER_APPS_DIR=/var/root/Applications
export USER_LIBRARY_DIR=/var/root/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERSIONPLIST_PATH=BGMXPCHelper.xpc/Contents/version.plist
export VERSION_INFO_BUILDER=root
export VERSION_INFO_FILE=BGMXPCHelper_vers.c
export VERSION_INFO_STRING=""@(#)PROGRAM:BGMXPCHelper PROJECT:BGMApp-""
export WRAPPER_EXTENSION=xpc
export WRAPPER_NAME=BGMXPCHelper.xpc
export WRAPPER_SUFFIX=.xpc
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=7D175
export XCODE_VERSION_ACTUAL=0730
export XCODE_VERSION_MAJOR=0700
export XCODE_VERSION_MINOR=0730
export XPCSERVICES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/gunnard/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Script-276972891CAFCE91007A2F7C.sh
Installed to com.bearisdriving.BGM.XPCHelper.plist to /Library/LaunchDaemons.
Started the BGMXPCHelper service.

SetOwnerAndGroup root:wheel /usr/local/libexec/BGMXPCHelper.xpc
cd /Users/gunnard/BackgroundMusic/BGMApp
/usr/sbin/chown -RH root:wheel /usr/local/libexec/BGMXPCHelper.xpc

SetMode u+w,go-w,a+rX /usr/local/libexec/BGMXPCHelper.xpc
cd /Users/gunnard/BackgroundMusic/BGMApp
/bin/chmod -RH u+w,go-w,a+rX /usr/local/libexec/BGMXPCHelper.xpc

** INSTALL SUCCEEDED **

Installing �[1mBackground Music.app�(B�[m to �[1m/Applications�(B�[m.
Build settings from command line:
DSTROOT = /
RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET Background Music OF PROJECT BGMApp WITH CONFIGURATION Release ===

Check dependencies

SetOwnerAndGroup root:wheel /Applications/Background\ Music.app
cd /Users/gunnard/BackgroundMusic/BGMApp
/usr/sbin/chown -RH root:wheel /Applications/Background\ Music.app

SetMode u+w,go-w,a+rX /Applications/Background\ Music.app
cd /Users/gunnard/BackgroundMusic/BGMApp
/bin/chmod -RH u+w,go-w,a+rX /Applications/Background\ Music.app

** INSTALL SUCCEEDED **

Restarting coreaudiod to load BGMDriver.

Install Fails with Xcode 6

Good job, this is really the thing I want, thanks.

But I got some errors when running build_and_install.sh:

Installing BGMXPCHelper.xpc to /Library/Application Support/Background Music.
Installing Background Music.app to /Applications.
...ERROR: Install script failed at line 187. This is probably a bug in the script. Feel free to report it.
ERROR: Install script failed at line 62. This is probably a bug in the script. Feel free to report it.
ERROR: Build step failed. See build_and_install.log for details.
Failed command:
    sudo xcodebuild -project BGMApp/BGMApp.xcodeproj -target Background Music -configuration Release RUN_CLANG_STATIC_ANALYZER=0 DSTROOT=/ install

build_and_install.log

Installing the virtual audio device �[1mBackground Music Device.driver�(B�[m to �[1m/Library/Audio/Plug-Ins/HAL�(B�[m.
Build settings from command line:
    DSTROOT = /
    RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET Background Music Device OF PROJECT BGMDriver WITH CONFIGURATION Release ===

Check dependencies

SetOwnerAndGroup root:wheel /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver
    cd /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMDriver
    /usr/sbin/chown -RH root:wheel /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver

SetMode u+w,go-w,a+rX /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver
    cd /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMDriver
    /bin/chmod -RH u+w,go-w,a+rX /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver

** INSTALL SUCCEEDED **

Installing �[1mBGMXPCHelper.xpc�(B�[m to �[1m/Library/Application Support/Background Music�(B�[m.
Build settings from command line:
    DSTROOT = /
    INSTALL_PATH = /Library/Application Support/Background Music
    RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET BGMXPCHelper OF PROJECT BGMApp WITH CONFIGURATION Release ===

Check dependencies

PhaseScriptExecution Run\ Script build/BGMApp.build/Release/BGMXPCHelper.build/Script-276972891CAFCE91007A2F7C.sh
    cd /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp
    export ACTION=install
    export ALTERNATE_GROUP=wheel
    export ALTERNATE_MODE=u+w,go-w,a+rX
    export ALTERNATE_OWNER=root
    export ALWAYS_SEARCH_USER_PATHS=NO
    export ALWAYS_USE_SEPARATE_HEADERMAPS=YES
    export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
    export APPLE_INTERNAL_DIR=/AppleInternal
    export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
    export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
    export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
    export APPLICATION_EXTENSION_API_ONLY=NO
    export APPLY_RULES_IN_COPY_FILES=NO
    export ARCHS=x86_64
    export ARCHS_STANDARD=x86_64
    export ARCHS_STANDARD_32_64_BIT="x86_64 i386"
    export ARCHS_STANDARD_32_BIT=i386
    export ARCHS_STANDARD_64_BIT=x86_64
    export ARCHS_STANDARD_INCLUDING_64_BIT=x86_64
    export AVAILABLE_PLATFORMS="iphonesimulator macosx iphoneos"
    export BUILD_COMPONENTS="headers build"
    export BUILD_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build
    export BUILD_ROOT=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build
    export BUILD_STYLE=
    export BUILD_VARIANTS=normal
    export BUILT_PRODUCTS_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release
    export CACHE_ROOT=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/6.4-6E35b/Xcode
    export CCHROOT=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/6.4-6E35b/Xcode
    export CHMOD=/bin/chmod
    export CHOWN=/usr/sbin/chown
    export CLANG_ANALYZER_SECURITY_FLOATLOOPCOUNTER=YES
    export CLANG_CXX_LANGUAGE_STANDARD=c++0x
    export CLANG_CXX_LIBRARY=libc++
    export CLANG_ENABLE_MODULES=YES
    export CLANG_ENABLE_OBJC_ARC=YES
    export CLANG_MODULES_BUILD_SESSION_FILE=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation
    export CLANG_WARN_ASSIGN_ENUM=YES
    export CLANG_WARN_BOOL_CONVERSION=YES
    export CLANG_WARN_CONSTANT_CONVERSION=YES
    export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
    export CLANG_WARN_EMPTY_BODY=YES
    export CLANG_WARN_ENUM_CONVERSION=YES
    export CLANG_WARN_IMPLICIT_SIGN_CONVERSION=NO
    export CLANG_WARN_INT_CONVERSION=YES
    export CLANG_WARN_NULLABLE_TO_NONNULL_CONVERSION=YES
    export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
    export CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION=YES
    export CLANG_WARN_UNREACHABLE_CODE=YES
    export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
    export CLASS_FILE_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/JavaClasses
    export CLEAN_PRECOMPS=YES
    export CLONE_HEADERS=NO
    export CODESIGNING_FOLDER_PATH="/Library/Application Support/Background Music/BGMXPCHelper.xpc"
    export CODE_SIGNING_ALLOWED=YES
    export COLOR_DIAGNOSTICS=NO
    export COMBINE_HIDPI_IMAGES=NO
    export COMMAND_MODE=legacy
    export COMPOSITE_SDK_DIRS=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/6.4-6E35b/Xcode/CompositeSDKs
    export CONFIGURATION=Release
    export CONFIGURATION_BUILD_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release
    export CONFIGURATION_TEMP_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release
    export CONTENTS_FOLDER_PATH=BGMXPCHelper.xpc/Contents
    export COPYING_PRESERVES_HFS_DATA=NO
    export COPY_PHASE_STRIP=NO
    export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
    export CP=/bin/cp
    export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
    export CURRENT_ARCH=x86_64
    export CURRENT_VARIANT=normal
    export DEAD_CODE_STRIPPING=YES
    export DEBUGGING_SYMBOLS=YES
    export DEBUG_INFORMATION_FORMAT=dwarf-with-dsym
    export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
    export DEFAULT_KEXT_INSTALL_PATH=/Library/Extensions
    export DEFINES_MODULE=NO
    export DEPLOYMENT_LOCATION=YES
    export DEPLOYMENT_POSTPROCESSING=YES
    export DERIVED_FILES_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
    export DERIVED_FILE_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
    export DERIVED_SOURCES_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
    export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
    export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
    export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
    export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export DEVELOPMENT_LANGUAGE=English
    export DOCUMENTATION_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj/Documentation
    export DO_HEADER_SCANNING_IN_JAM=NO
    export DSTROOT=/
    export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
    export DWARF_DSYM_FILE_NAME=BGMXPCHelper.xpc.dSYM
    export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
    export DWARF_DSYM_FOLDER_PATH=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release
    export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
    export EMBEDDED_PROFILE_NAME=embedded.provisionprofile
    export ENABLE_HEADER_DEPENDENCIES=YES
    export ENABLE_NS_ASSERTIONS=NO
    export ENABLE_STRICT_OBJC_MSGSEND=YES
    export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
    export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch (*) .DS_Store CVS .svn .git .hg *.xcodeproj *.xcode *.pbproj *.pbxproj"
    export EXECUTABLES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Executables
    export EXECUTABLE_FOLDER_PATH=BGMXPCHelper.xpc/Contents/MacOS
    export EXECUTABLE_NAME=BGMXPCHelper
    export EXECUTABLE_PATH=BGMXPCHelper.xpc/Contents/MacOS/BGMXPCHelper
    export EXPANDED_CODE_SIGN_IDENTITY=
    export EXPANDED_CODE_SIGN_IDENTITY_NAME=
    export EXPANDED_PROVISIONING_PROFILE=
    export FILE_LIST=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects/LinkFileList
    export FIXED_FILES_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/FixedFiles
    export FRAMEWORKS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Frameworks
    export FRAMEWORK_FLAG_PREFIX=-framework
    export FRAMEWORK_SEARCH_PATHS="/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release "
    export FRAMEWORK_VERSION=A
    export FULL_PRODUCT_NAME=BGMXPCHelper.xpc
    export GCC3_VERSION=3.3
    export GCC_C_LANGUAGE_STANDARD=c11
    export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
    export GCC_NO_COMMON_BLOCKS=YES
    export GCC_OPTIMIZATION_LEVEL=s
    export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
    export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=0 CoreAudio_Debug=0 CoreAudio_UseSysLog=0 CoreAudio_StopOnAssert=0"
    export GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS=YES
    export GCC_TREAT_WARNINGS_AS_ERRORS=YES
    export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
    export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
    export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
    export GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS=YES
    export GCC_WARN_ABOUT_MISSING_PROTOTYPES=YES
    export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
    export GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED=YES
    export GCC_WARN_SHADOW=YES
    export GCC_WARN_STRICT_SELECTOR_MATCH=YES
    export GCC_WARN_UNDECLARED_SELECTOR=YES
    export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
    export GCC_WARN_UNUSED_FUNCTION=YES
    export GCC_WARN_UNUSED_LABEL=YES
    export GCC_WARN_UNUSED_PARAMETER=YES
    export GCC_WARN_UNUSED_VARIABLE=YES
    export GENERATE_MASTER_OBJECT_FILE=NO
    export GENERATE_PKGINFO_FILE=NO
    export GENERATE_PROFILING_CODE=NO
    export GID=0
    export GROUP=wheel
    export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
    export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
    export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
    export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
    export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
    export HEADERMAP_USES_VFS=NO
    export HEADER_SEARCH_PATHS="/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release/include  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include"
    export ICONV=/usr/bin/iconv
    export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
    export INFOPLIST_FILE=BGMXPCHelper/Info.plist
    export INFOPLIST_OUTPUT_FORMAT=same-as-input
    export INFOPLIST_PATH=BGMXPCHelper.xpc/Contents/Info.plist
    export INFOPLIST_PREPROCESS=NO
    export INFOSTRINGS_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj/InfoPlist.strings
    export INSTALL_DIR="//Library/Application Support/Background Music"
    export INSTALL_GROUP=wheel
    export INSTALL_MODE_FLAG=u+w,go-w,a+rX
    export INSTALL_OWNER=root
    export INSTALL_PATH="/Library/Application Support/Background Music"
    export INSTALL_ROOT=/
    export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
    export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
    export JAVA_ARCHIVE_CLASSES=YES
    export JAVA_ARCHIVE_TYPE=JAR
    export JAVA_COMPILER=/usr/bin/javac
    export JAVA_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/Java
    export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
    export JAVA_JAR_FLAGS=cv
    export JAVA_SOURCE_SUBDIR=.
    export JAVA_USE_DEPENDENCIES=YES
    export JAVA_ZIP_FLAGS=-urg
    export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
    export KEEP_PRIVATE_EXTERNS=NO
    export LD_DEPENDENCY_INFO_FILE=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelper_dependency_info.dat
    export LD_GENERATE_MAP_FILE=NO
    export LD_MAP_FILE_PATH=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-LinkMap-normal-x86_64.txt
    export LD_NO_PIE=NO
    export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
    export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
    export LEX=lex
    export LIBRARY_FLAG_NOSPACE=YES
    export LIBRARY_FLAG_PREFIX=-l
    export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
    export LIBRARY_SEARCH_PATHS="/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release "
    export LINKER_DISPLAYS_MANGLED_NAMES=NO
    export LINK_FILE_LIST_normal_x86_64=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelper.LinkFileList
    export LINK_WITH_STANDARD_LIBRARIES=YES
    export LOCALIZED_RESOURCES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj
    export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
    export LOCAL_APPS_DIR=/Applications
    export LOCAL_DEVELOPER_DIR=/Library/Developer
    export LOCAL_LIBRARY_DIR=/Library
    export MACH_O_TYPE=mh_execute
    export MACOSX_DEPLOYMENT_TARGET=10.9
    export MAC_OS_X_PRODUCT_BUILD_VERSION=15D21
    export MAC_OS_X_VERSION_ACTUAL=101103
    export MAC_OS_X_VERSION_MAJOR=101100
    export MAC_OS_X_VERSION_MINOR=1103
    export MTL_ENABLE_DEBUG_INFO=NO
    export NATIVE_ARCH=i386
    export NATIVE_ARCH_32_BIT=i386
    export NATIVE_ARCH_64_BIT=x86_64
    export NATIVE_ARCH_ACTUAL=x86_64
    export NO_COMMON=YES
    export OBJECT_FILE_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects
    export OBJECT_FILE_DIR_normal=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal
    export OBJROOT=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build
    export ONLY_ACTIVE_ARCH=NO
    export OPTIMIZATION_LEVEL=0
    export OS=MACOS
    export OSAC=/usr/bin/osacompile
    export PACKAGE_TYPE=com.apple.package-type.xpc-service
    export PASCAL_STRINGS=YES
    export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/aria2/bin:/usr/local/git/bin:/usr/local/go/bin:/Users/Fay/www/mongodb-2.6.7/bin:/Users/Fay/.rvm/bin:/Users/Fay/www/shell:/Users/Fay/www/gitlab.alibaba-inc.com/fei.xf/scripts/shell:/Applications/Privoxy"
    export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
    export PBDEVELOPMENTPLIST_PATH=BGMXPCHelper.xpc/Contents/pbdevelopment.plist
    export PFE_FILE_C_DIALECTS=objective-c
    export PKGINFO_FILE_PATH=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/PkgInfo
    export PKGINFO_PATH=BGMXPCHelper.xpc/Contents/PkgInfo
    export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
    export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
    export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
    export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform
    export PLATFORM_NAME=macosx
    export PLATFORM_PREFERRED_ARCH=x86_64
    export PLATFORM_PRODUCT_BUILD_VERSION=6E35b
    export PLIST_FILE_OUTPUT_FORMAT=same-as-input
    export PLUGINS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/PlugIns
    export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
    export PRECOMP_DESTINATION_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/PrefixHeaders
    export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
    export PRIVATE_HEADERS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/PrivateHeaders
    export PRODUCT_BUNDLE_IDENTIFIER=com.bearisdriving.BGM.XPCHelper
    export PRODUCT_MODULE_NAME=BGMXPCHelper
    export PRODUCT_NAME=BGMXPCHelper
    export PRODUCT_SETTINGS_PATH=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMXPCHelper/Info.plist
    export PRODUCT_TYPE=com.apple.product-type.xpc-service
    export PROFILING_CODE=NO
    export PROJECT=BGMApp
    export PROJECT_DERIVED_FILE_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/DerivedSources
    export PROJECT_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp
    export PROJECT_FILE_PATH=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp.xcodeproj
    export PROJECT_NAME=BGMApp
    export PROJECT_TEMP_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build
    export PROJECT_TEMP_ROOT=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build
    export PUBLIC_HEADERS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Headers
    export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
    export REMOVE_CVS_FROM_RESOURCES=YES
    export REMOVE_GIT_FROM_RESOURCES=YES
    export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
    export REMOVE_HG_FROM_RESOURCES=YES
    export REMOVE_SVN_FROM_RESOURCES=YES
    export REZ_COLLECTOR_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/ResourceManagerResources
    export REZ_OBJECTS_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/ResourceManagerResources/Objects
    export REZ_SEARCH_PATHS="/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release "
    export RUN_CLANG_STATIC_ANALYZER=0
    export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
    export SCRIPTS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/Scripts
    export SCRIPT_INPUT_FILE_COUNT=0
    export SCRIPT_OUTPUT_FILE_COUNT=0
    export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk
    export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk
    export SDK_NAME=macosx10.10
    export SDK_PRODUCT_BUILD_VERSION=14D125
    export SED=/usr/bin/sed
    export SEPARATE_STRIP=NO
    export SEPARATE_SYMBOL_EDIT=NO
    export SET_DIR_MODE_OWNER_GROUP=YES
    export SET_FILE_MODE_OWNER_GROUP=NO
    export SHALLOW_BUNDLE=NO
    export SHARED_DERIVED_FILE_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release/DerivedSources
    export SHARED_FRAMEWORKS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/SharedFrameworks
    export SHARED_PRECOMPS_DIR=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/6.4-6E35b/Xcode/SharedPrecompiledHeaders
    export SHARED_SUPPORT_FOLDER_PATH=BGMXPCHelper.xpc/Contents/SharedSupport
    export SKIP_INSTALL=NO
    export SOURCE_ROOT=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp
    export SRCROOT=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp
    export STRINGS_FILE_OUTPUT_ENCODING=UTF-16
    export STRIP_INSTALLED_PRODUCT=YES
    export STRIP_STYLE=non-global
    export SUPPORTED_PLATFORMS=macosx
    export SYMROOT=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build
    export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
    export SYSTEM_APPS_DIR=/Applications
    export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
    export SYSTEM_DEMOS_DIR=/Applications/Extras
    export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
    export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
    export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
    export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
    export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
    export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
    export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
    export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
    export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
    export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
    export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
    export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
    export SYSTEM_LIBRARY_DIR=/System/Library
    export TARGETNAME=BGMXPCHelper
    export TARGET_BUILD_DIR="/Library/Application Support/Background Music"
    export TARGET_NAME=BGMXPCHelper
    export TARGET_TEMP_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_FILES_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_FILE_DIR=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_ROOT=/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build
    export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
    export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
    export UID=0
    export UNLOCALIZED_RESOURCES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources
    export UNSTRIPPED_PRODUCT=NO
    export USER=root
    export USER_APPS_DIR=/Users/Fay/Applications
    export USER_LIBRARY_DIR=/Users/Fay/Library
    export USE_DYNAMIC_NO_PIC=YES
    export USE_HEADERMAP=YES
    export USE_HEADER_SYMLINKS=NO
    export VALIDATE_PRODUCT=NO
    export VALID_ARCHS="i386 x86_64"
    export VERBOSE_PBXCP=NO
    export VERSIONPLIST_PATH=BGMXPCHelper.xpc/Contents/version.plist
    export VERSION_INFO_BUILDER=root
    export VERSION_INFO_FILE=BGMXPCHelper_vers.c
    export VERSION_INFO_STRING="\"@(#)PROGRAM:BGMXPCHelper  PROJECT:BGMApp-\""
    export WRAPPER_EXTENSION=xpc
    export WRAPPER_NAME=BGMXPCHelper.xpc
    export WRAPPER_SUFFIX=.xpc
    export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
    export XCODE_PRODUCT_BUILD_VERSION=6E35b
    export XCODE_VERSION_ACTUAL=0640
    export XCODE_VERSION_MAJOR=0600
    export XCODE_VERSION_MINOR=0640
    export XPCSERVICES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/XPCServices
    export YACC=yacc
    export arch=x86_64
    export variant=normal
    /bin/sh -c /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Script-276972891CAFCE91007A2F7C.sh
Installed com.bearisdriving.BGM.XPCHelper.plist to /Library/LaunchDaemons.
Unregistering /Library/LaunchDaemons/com.bearisdriving.BGM.XPCHelper.plist. This will print errors if you don't already have a version of it registered, or your system uses an older version of launchctl. They're safe to ignore.
----
----
Started the BGMXPCHelper service.

SetOwnerAndGroup root:wheel /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc
    cd /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp
    /usr/sbin/chown -RH root:wheel /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc

SetMode u+w,go-w,a+rX /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc
    cd /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp
    /bin/chmod -RH u+w,go-w,a+rX /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc

** INSTALL SUCCEEDED **

Installing �[1mBackground Music.app�(B�[m to �[1m/Applications�(B�[m.
Build settings from command line:
    DSTROOT = /
    RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET Background Music OF PROJECT BGMApp WITH CONFIGURATION Release ===

Check dependencies

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMiTunes.o BGMApp/Music\ Players/BGMiTunes.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c11 -fobjc-arc -fmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Werror-implicit-function-declaration -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -fvisibility=hidden -Wno-sign-conversion -iquote /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMiTunes.d --serialize-diagnostics /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMiTunes.dia -c /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music\ Players/BGMiTunes.m -o /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMiTunes.o
In file included from /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMiTunes.m:24:
In file included from /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMiTunes.h:24:
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:65:20: error: expected '>'
+ (NSArray<NSNumber*>*) pidsOfRunningInstances;
                   ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:65:21: error: expected ')'
+ (NSArray<NSNumber*>*) pidsOfRunningInstances;
                    ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:65:3: note: to match this '('
+ (NSArray<NSNumber*>*) pidsOfRunningInstances;
  ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:22: error: unknown type name '__kindof'
@property (readonly) __kindof SBApplication* __nullable sbApplication;
                     ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:44: error: expected ';' at end of declaration list
@property (readonly) __kindof SBApplication* __nullable sbApplication;
                                           ^
                                           ;
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:57: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
@property (readonly) __kindof SBApplication* __nullable sbApplication;
                                                        ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:57: error: cannot declare variable inside @interface or @protocol
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMiTunes.m:57:38: error: property 'sbApplication' not found on object of type 'BGMiTunes *'; did you mean 'SBApplication'?
    return (iTunesApplication*) self.sbApplication;
                                     ^~~~~~~~~~~~~
                                     SBApplication
In file included from /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMiTunes.m:24:
In file included from /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMiTunes.h:24:
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:31: note: 'SBApplication' declared here
@property (readonly) __kindof SBApplication* __nullable sbApplication;
                              ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMiTunes.m:57:12: error: cast to 'iTunesApplication *' from smaller integer type 'int' [-Werror,-Wint-to-pointer-cast]
    return (iTunesApplication*) self.sbApplication;
           ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMiTunes.m:57:12: error: cast of 'int' to 'iTunesApplication *' is disallowed with ARC
    return (iTunesApplication*) self.sbApplication;
           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 errors generated.

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMMusicPlayer.o BGMApp/Music\ Players/BGMMusicPlayer.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c11 -fobjc-arc -fmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Werror-implicit-function-declaration -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -fvisibility=hidden -Wno-sign-conversion -iquote /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMMusicPlayer.d --serialize-diagnostics /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMMusicPlayer.dia -c /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music\ Players/BGMMusicPlayer.m -o /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMMusicPlayer.o
In file included from /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.m:24:
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:65:20: error: expected '>'
+ (NSArray<NSNumber*>*) pidsOfRunningInstances;
                   ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:65:21: error: expected ')'
+ (NSArray<NSNumber*>*) pidsOfRunningInstances;
                    ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:65:3: note: to match this '('
+ (NSArray<NSNumber*>*) pidsOfRunningInstances;
  ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:22: error: unknown type name '__kindof'
@property (readonly) __kindof SBApplication* __nullable sbApplication;
                     ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:44: error: expected ';' at end of declaration list
@property (readonly) __kindof SBApplication* __nullable sbApplication;
                                           ^
                                           ;
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:57: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
@property (readonly) __kindof SBApplication* __nullable sbApplication;
                                                        ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:57: error: cannot declare variable inside @interface or @protocol
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.m:43:13: error: property implementation must have its declaration in interface 'BGMMusicPlayerBase'
@synthesize sbApplication = sbApplication;
            ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.m:62:29: error: implicit conversion of an Objective-C pointer to 'int * __nullable' is disallowed with ARC
            sbApplication = [SBApplication applicationWithBundleIdentifier:bundleID];
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.m:62:27: error: incompatible pointer types assigning to 'int * __nullable' from 'id' [-Werror,-Wincompatible-pointer-types]
            sbApplication = [SBApplication applicationWithBundleIdentifier:bundleID];
                          ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.m:63:26: error: member reference base type 'int * __nullable' is not a structure or union
            sbApplication.delegate = self;
            ~~~~~~~~~~~~~^~~~~~~~~

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMVox.o BGMApp/Music\ Players/BGMVox.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c11 -fobjc-arc -fmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Werror-implicit-function-declaration -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -fvisibility=hidden -Wno-sign-conversion -iquote /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMVox.d --serialize-diagnostics /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMVox.dia -c /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music\ Players/BGMVox.m -o /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMVox.o
In file included from /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMVox.m:24:
In file included from /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMVox.h:24:
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:65:20: error: expected '>'
+ (NSArray<NSNumber*>*) pidsOfRunningInstances;
                   ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:65:21: error: expected ')'
+ (NSArray<NSNumber*>*) pidsOfRunningInstances;
                    ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:65:3: note: to match this '('
+ (NSArray<NSNumber*>*) pidsOfRunningInstances;
  ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:22: error: unknown type name '__kindof'
@property (readonly) __kindof SBApplication* __nullable sbApplication;
                     ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:44: error: expected ';' at end of declaration list
@property (readonly) __kindof SBApplication* __nullable sbApplication;
                                           ^
                                           ;
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:57: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int]
@property (readonly) __kindof SBApplication* __nullable sbApplication;
                                                        ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:57: error: cannot declare variable inside @interface or @protocol
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMVox.m:52:35: error: property 'sbApplication' not found on object of type 'BGMVox *'; did you mean 'SBApplication'?
    return (VoxApplication*) self.sbApplication;
                                  ^~~~~~~~~~~~~
                                  SBApplication
In file included from /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMVox.m:24:
In file included from /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMVox.h:24:
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h:107:31: note: 'SBApplication' declared here
@property (readonly) __kindof SBApplication* __nullable sbApplication;
                              ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMVox.m:52:12: error: cast to 'VoxApplication *' from smaller integer type 'int' [-Werror,-Wint-to-pointer-cast]
    return (VoxApplication*) self.sbApplication;
           ^
/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMVox.m:52:12: error: cast of 'int' to 'VoxApplication *' is disallowed with ARC
    return (VoxApplication*) self.sbApplication;
           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 errors generated.

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMAppVolumes.o BGMApp/BGMAppVolumes.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fobjc-arc -fmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility=hidden -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMAppVolumes.d --serialize-diagnostics /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMAppVolumes.dia -c /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/BGMApp/BGMAppVolumes.mm -o /Users/Fay/www/github.com/kyleneideck/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMAppVolumes.o

** INSTALL FAILED **


The following build commands failed:
    CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMiTunes.o BGMApp/Music\ Players/BGMiTunes.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMVox.o BGMApp/Music\ Players/BGMVox.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(2 failures)

exclude apps

is it possible to exclude some apps via the preferences?

I've the following problem:
the mail app makes a noise after sending an email, facebook chat makes noises, ... and all of them are pausing spotify.

Dynamic shortcuts to select the Output Device

It would be cool, if we can create shortcuts to directly select a device. (e.g. Cmd+Shift+1, Cmd+Shift+2,...).
It would be also great, if we can go through the output device list with shortcuts. (e.g Cmd+Shift+Arrow-Down, Cmd+Shift+Arrow-Up)

Install Failed

Cloned/downloaded and ran the intall script from terminal. Install failed and the following is what I got from Terminal:

Installing BGMXPCHelper.xpc to /Library/Application Support/Background Music.
Installing Background Music.app to /Applications.
Restarting coreaudiod to load BGMDriver.
Invalid signal.
Usage: launchctl kill <signal-number|signal-name>
ERROR: Install script failed at line 200. This is probably a bug in the script. Feel free to report it.

My setup: MacBook Pro (Retina, 15-inch, Mid 2015) running OSX 10.10.5 (Yosemite)

Handling notification sounds

First of all : you rock, this utility is gonna be awesome.

Now my suggestion : currently the utility auto-pauses the player when any sound is played elsewhere. The problem being that when receiving a notification on —saying— Facebook on Chrome, the player auto-pauses as well.

A better solution could be to trigger the auto-pause only after a certain amount of time, so that short sounds like notifications won't trigger it.

Another solution could be to fadeOut the player's volume during a certain amount of time, then pauses it if the sound that trigger the event is still playing (or fadeIn it again if the sound is not playing anymore).
Like this, the utility should reduce the volume during the time of a notification so you can hear it, or fadeOut and then pauses your player if the sound is too long to be a notification sound.

Can't change Safari volume

Hello, great app! I noticed that the per app volume control doesn't work with Safari, the volume level doesn't change. The audio detection does work because when I start playing a youtube video, the music player stops, just can't control it.

Application producing audio hangs when starting to reproduce it

I can't reproduce it 100% but it happens a lot of times that when an application is going to start reproducing audio it hangs for 8-10 seconds (if not more) and then it either starts reproducing the audio correctly or the audio is out of sync.
Most of the times it happens when I'm trying to repduce a video in Safari and the whole pages freezes.
I'm sure it is caused by BackgroundMusic because it doesn't happen without it, and when the applciation is hanging the BackgroundMusic app is also hanging.

Build fails (El Capitan 10.11.3)

This is the output:

About to install Background Music. Please pause all audio, if you can.

This script will install:
 - /Applications/Background Music.app
 - /Library/Audio/Plug-Ins/HAL/Background Music Device.driver
 - /Library/Application Support/Background Music/BGMXPCHelper.xpc
 - /Library/LaunchDaemons/com.bearisdriving.BGM.XPCHelper.plist

Continue (y/N)? y
Password:
build_and_install.sh: line 261: wait: pid 1018 is not a child of this shell
Looking for Xcode...
It looks like you have Xcode installed to
/Applications/Xcode.app
imac:BackgroundMusic markoradak$

Cant Change Franz Volume

Franz is a multi protocol IM app built on electron, so I assume this has the same problem as safari in that each page is a different process and thus has a different volume control. Whatever the case, volume controls do not work on it for me.

Set a default output

I often switch between different outputs, such as Bluetooth, Built-In-Output, etc.

I would like there to be a default (on launch) set by Background Music. I personally think that the default should be set to Built-In-Output, but perhaps a setting that can allow that to be changed would be good.

Often times, when it launches, I will have to fiddle around with the settings to get the right output device.

Thanks guys!

Installation fails on OS X (El Capitan)

Issue seems related to #1

❯ ./build_and_install.sh
Installing the virtual audio device Background Music Device.driver to /Library/Audio/Plug-Ins/HAL.
Installing BGMXPCHelper.xpc to /Library/Application Support/Background Music.
Installing Background Music.app to /Applications.
..ERROR: Install script failed at line 185. This is probably a bug in the script. Feel free to report it.
ERROR: Install script failed at line 60. This is probably a bug in the script. Feel free to report it.
ERROR: Build step failed. See build_and_install.log for details.
Failed command:
    sudo xcodebuild -project BGMApp/BGMApp.xcodeproj -target Background Music -configuration Release RUN_CLANG_STATIC_ANALYZER=0 DSTROOT=/ install

build_and_install.log

Installing the virtual audio device �[1mBackground Music Device.driver�[m� to �[1m/Library/Audio/Plug-Ins/HAL�[m�.
Build settings from command line:
    DSTROOT = /
    RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET Background Music Device OF PROJECT BGMDriver WITH CONFIGURATION Release ===

Check dependencies

Write auxiliary files
write-file /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-non-framework-target-headers.hmap
write-file /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap
/bin/mkdir -p /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64
write-file /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/Background\ Music\ Device.LinkFileList
write-file /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap
write-file /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap
write-file /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device.hmap
write-file /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap

ProcessInfoPlistFile /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/Info.plist BGMDriver/Info.plist
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    builtin-infoPlistUtility /Users/Okan/Desktop/BackgroundMusic/BGMDriver/BGMDriver/Info.plist -expandbuildsettings -platform macosx -o /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/Info.plist

SymLink build/Release/Background\ Music\ Device.driver /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    /bin/ln -sfh /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/Background\ Music\ Device.driver

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFArray.o PublicUtility/CACFArray.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFArray.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFArray.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/PublicUtility/CACFArray.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFArray.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFDictionary.o PublicUtility/CACFDictionary.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFDictionary.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFDictionary.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/PublicUtility/CACFDictionary.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFDictionary.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Device.o BGMDriver/BGM_Device.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Device.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Device.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/BGMDriver/BGM_Device.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Device.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADispatchQueue.o PublicUtility/CADispatchQueue.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADispatchQueue.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADispatchQueue.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/PublicUtility/CADispatchQueue.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADispatchQueue.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADebugPrintf.o PublicUtility/CADebugPrintf.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADebugPrintf.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADebugPrintf.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/PublicUtility/CADebugPrintf.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADebugPrintf.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFNumber.o PublicUtility/CACFNumber.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFNumber.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFNumber.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/PublicUtility/CACFNumber.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFNumber.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADebugMacros.o PublicUtility/CADebugMacros.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADebugMacros.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADebugMacros.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/PublicUtility/CADebugMacros.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADebugMacros.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Client.o BGMDriver/DeviceClients/BGM_Client.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Client.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Client.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/BGMDriver/DeviceClients/BGM_Client.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Client.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAPThread.o PublicUtility/CAPThread.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAPThread.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAPThread.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/PublicUtility/CAPThread.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAPThread.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFString.o PublicUtility/CACFString.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFString.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFString.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/PublicUtility/CACFString.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CACFString.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_WrappedAudioEngine.o BGMDriver/BGM_WrappedAudioEngine.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_WrappedAudioEngine.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_WrappedAudioEngine.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/BGMDriver/BGM_WrappedAudioEngine.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_WrappedAudioEngine.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_PlugInInterface.o BGMDriver/BGM_PlugInInterface.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_PlugInInterface.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_PlugInInterface.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/BGMDriver/BGM_PlugInInterface.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_PlugInInterface.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_PlugIn.o BGMDriver/BGM_PlugIn.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_PlugIn.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_PlugIn.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/BGMDriver/BGM_PlugIn.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_PlugIn.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_XPCHelper.o BGMDriver/BGM_XPCHelper.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -fobjc-arc -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_XPCHelper.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_XPCHelper.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/BGMDriver/BGM_XPCHelper.m -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_XPCHelper.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_ClientMap.o BGMDriver/DeviceClients/BGM_ClientMap.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_ClientMap.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_ClientMap.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/BGMDriver/DeviceClients/BGM_ClientMap.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_ClientMap.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Object.o BGMDriver/BGM_Object.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Object.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Object.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/BGMDriver/BGM_Object.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Object.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADebugger.o PublicUtility/CADebugger.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADebugger.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADebugger.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/PublicUtility/CADebugger.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CADebugger.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAMutex.o PublicUtility/CAMutex.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAMutex.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAMutex.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/PublicUtility/CAMutex.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAMutex.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAHostTimeBase.o PublicUtility/CAHostTimeBase.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAHostTimeBase.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAHostTimeBase.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/PublicUtility/CAHostTimeBase.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAHostTimeBase.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAVolumeCurve.o PublicUtility/CAVolumeCurve.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAVolumeCurve.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAVolumeCurve.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/PublicUtility/CAVolumeCurve.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/CAVolumeCurve.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_TaskQueue.o BGMDriver/BGM_TaskQueue.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_TaskQueue.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_TaskQueue.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/BGMDriver/BGM_TaskQueue.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_TaskQueue.o

CompileC build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Clients.o BGMDriver/DeviceClients/BGM_Clients.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fno-rtti -fpascal-strings -Os -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=1 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility-inlines-hidden -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Background\ Music\ Device-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Clients.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Clients.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/BGMDriver/DeviceClients/BGM_Clients.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/BGM_Clients.o

Ld /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/MacOS/Background\ Music\ Device normal x86_64
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    export MACOSX_DEPLOYMENT_TARGET=10.9
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -bundle -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -L/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -F/Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release -filelist /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/Background\ Music\ Device.LinkFileList -mmacosx-version-min=10.9 -dead_strip -stdlib=libc++ -fobjc-arc -fobjc-link-runtime -framework Foundation -framework CoreAudio -framework CoreFoundation -Xlinker -dependency_info -Xlinker /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/Background\ Music\ Device_dependency_info.dat -o /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/MacOS/Background\ Music\ Device

GenerateDSYMFile build/Release/Background\ Music\ Device.driver.dSYM /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/MacOS/Background\ Music\ Device
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/MacOS/Background\ Music\ Device -o /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/Background\ Music\ Device.driver.dSYM

CpResource BGMDriver/DeviceIcon.icns /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/Resources/DeviceIcon.icns
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-debug-symbols -strip-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks /Users/Okan/Desktop/BackgroundMusic/BGMDriver/BGMDriver/DeviceIcon.icns /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/Resources

Touch /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    /usr/bin/touch -c /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver

Strip /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/MacOS/Background\ Music\ Device
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -x /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/MacOS/Background\ Music\ Device

SetOwnerAndGroup root:wheel /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    /usr/sbin/chown -RH root:wheel /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver

SetMode u+w,go-w,a+rX /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    /bin/chmod -RH u+w,go-w,a+rX /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver

Touch build/Release/Background\ Music\ Device.driver.dSYM
    cd /Users/Okan/Desktop/BackgroundMusic/BGMDriver
    /usr/bin/touch -c /Users/Okan/Desktop/BackgroundMusic/BGMDriver/build/Release/Background\ Music\ Device.driver.dSYM

** INSTALL SUCCEEDED **

Installing �[1mBGMXPCHelper.xpc�[m� to �[1m/Library/Application Support/Background Music�[m�.
Build settings from command line:
    DSTROOT = /
    INSTALL_PATH = /Library/Application Support/Background Music
    RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET BGMXPCHelper OF PROJECT BGMApp WITH CONFIGURATION Release ===

Check dependencies

Write auxiliary files
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-all-target-headers.hmap
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-own-target-headers.hmap
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Script-276972891CAFCE91007A2F7C.sh
chmod 0755 /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Script-276972891CAFCE91007A2F7C.sh
/bin/mkdir -p /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelper.LinkFileList
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-project-headers.hmap
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-all-non-framework-target-headers.hmap
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper.hmap
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-generated-files.hmap

ProcessInfoPlistFile /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc/Contents/Info.plist BGMXPCHelper/Info.plist
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    builtin-infoPlistUtility /Users/Okan/Desktop/BackgroundMusic/BGMApp/BGMXPCHelper/Info.plist -expandbuildsettings -platform macosx -o /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc/Contents/Info.plist

SymLink build/Release/BGMXPCHelper.xpc /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    /bin/ln -sfh /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/BGMXPCHelper.xpc

CompileC build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelperService.o BGMXPCHelper/BGMXPCHelperService.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c11 -fobjc-arc -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Werror-implicit-function-declaration -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelperService.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelperService.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMApp/BGMXPCHelper/BGMXPCHelperService.m -o /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelperService.o

CompileC build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/main.o BGMXPCHelper/main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c11 -fobjc-arc -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Werror-implicit-function-declaration -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/main.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMApp/BGMXPCHelper/main.m -o /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/main.o

CompileC build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCListenerDelegate.o BGMXPCHelper/BGMXPCListenerDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c11 -fobjc-arc -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Werror -Werror-implicit-function-declaration -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -Wno-sign-conversion -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources -F/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCListenerDelegate.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCListenerDelegate.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMApp/BGMXPCHelper/BGMXPCListenerDelegate.m -o /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCListenerDelegate.o

Ld /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc/Contents/MacOS/BGMXPCHelper normal x86_64
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    export MACOSX_DEPLOYMENT_TARGET=10.9
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -L/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release -F/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release -filelist /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelper.LinkFileList -mmacosx-version-min=10.9 -dead_strip -fobjc-arc -fobjc-link-runtime -Xlinker -dependency_info -Xlinker /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelper_dependency_info.dat -o /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc/Contents/MacOS/BGMXPCHelper

GenerateDSYMFile build/Release/BGMXPCHelper.xpc.dSYM /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc/Contents/MacOS/BGMXPCHelper
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc/Contents/MacOS/BGMXPCHelper -o /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/BGMXPCHelper.xpc.dSYM

CpResource BGMXPCHelper/safe_install_dir.sh /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc/Contents/Resources/safe_install_dir.sh
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/Okan/Desktop/BackgroundMusic/BGMApp/BGMXPCHelper/safe_install_dir.sh /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc/Contents/Resources

CpResource BGMXPCHelper/com.bearisdriving.BGM.XPCHelper.plist.template /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc/Contents/Resources/com.bearisdriving.BGM.XPCHelper.plist.template
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/Okan/Desktop/BackgroundMusic/BGMApp/BGMXPCHelper/com.bearisdriving.BGM.XPCHelper.plist.template /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc/Contents/Resources

PhaseScriptExecution Run\ Script build/BGMApp.build/Release/BGMXPCHelper.build/Script-276972891CAFCE91007A2F7C.sh
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    export ACTION=install
    export ALTERNATE_GROUP=wheel
    export ALTERNATE_MODE=u+w,go-w,a+rX
    export ALTERNATE_OWNER=root
    export ALWAYS_SEARCH_USER_PATHS=NO
    export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
    export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
    export APPLE_INTERNAL_DIR=/AppleInternal
    export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
    export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
    export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
    export APPLICATION_EXTENSION_API_ONLY=NO
    export APPLY_RULES_IN_COPY_FILES=NO
    export ARCHS=x86_64
    export ARCHS_STANDARD=x86_64
    export ARCHS_STANDARD_32_64_BIT="x86_64 i386"
    export ARCHS_STANDARD_32_BIT=i386
    export ARCHS_STANDARD_64_BIT=x86_64
    export ARCHS_STANDARD_INCLUDING_64_BIT=x86_64
    export AVAILABLE_PLATFORMS="watchos iphonesimulator macosx appletvsimulator watchsimulator appletvos iphoneos"
    export BITCODE_GENERATION_MODE=bitcode
    export BUILD_ACTIVE_RESOURCES_ONLY=NO
    export BUILD_COMPONENTS="headers build"
    export BUILD_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build
    export BUILD_ROOT=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build
    export BUILD_STYLE=
    export BUILD_VARIANTS=normal
    export BUILT_PRODUCTS_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release
    export CACHE_ROOT=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/7.2-7C68/Xcode
    export CCHROOT=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/7.2-7C68/Xcode
    export CHMOD=/bin/chmod
    export CHOWN=/usr/sbin/chown
    export CLANG_ANALYZER_SECURITY_FLOATLOOPCOUNTER=YES
    export CLANG_CXX_LANGUAGE_STANDARD=c++0x
    export CLANG_CXX_LIBRARY=libc++
    export CLANG_ENABLE_MODULES=YES
    export CLANG_ENABLE_OBJC_ARC=YES
    export CLANG_MODULES_BUILD_SESSION_FILE=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation
    export CLANG_WARN_ASSIGN_ENUM=YES
    export CLANG_WARN_BOOL_CONVERSION=YES
    export CLANG_WARN_CONSTANT_CONVERSION=YES
    export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
    export CLANG_WARN_EMPTY_BODY=YES
    export CLANG_WARN_ENUM_CONVERSION=YES
    export CLANG_WARN_IMPLICIT_SIGN_CONVERSION=NO
    export CLANG_WARN_INT_CONVERSION=YES
    export CLANG_WARN_NULLABLE_TO_NONNULL_CONVERSION=YES
    export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
    export CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION=YES
    export CLANG_WARN_UNREACHABLE_CODE=YES
    export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
    export CLASS_FILE_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/JavaClasses
    export CLEAN_PRECOMPS=YES
    export CLONE_HEADERS=NO
    export CODESIGNING_FOLDER_PATH="/Library/Application Support/Background Music/BGMXPCHelper.xpc"
    export CODE_SIGNING_ALLOWED=YES
    export COLOR_DIAGNOSTICS=NO
    export COMBINE_HIDPI_IMAGES=NO
    export COMMAND_MODE=legacy
    export COMPOSITE_SDK_DIRS=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/7.2-7C68/Xcode/CompositeSDKs
    export CONFIGURATION=Release
    export CONFIGURATION_BUILD_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release
    export CONFIGURATION_TEMP_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release
    export CONTENTS_FOLDER_PATH=BGMXPCHelper.xpc/Contents
    export COPYING_PRESERVES_HFS_DATA=NO
    export COPY_HEADERS_RUN_UNIFDEF=NO
    export COPY_PHASE_STRIP=NO
    export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
    export CP=/bin/cp
    export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
    export CURRENT_ARCH=x86_64
    export CURRENT_VARIANT=normal
    export DEAD_CODE_STRIPPING=YES
    export DEBUGGING_SYMBOLS=YES
    export DEBUG_INFORMATION_FORMAT=dwarf-with-dsym
    export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
    export DEFAULT_KEXT_INSTALL_PATH=/Library/Extensions
    export DEFINES_MODULE=NO
    export DEPLOYMENT_LOCATION=YES
    export DEPLOYMENT_POSTPROCESSING=YES
    export DEPLOYMENT_TARGET_CLANG_ENV_NAME=MACOSX_DEPLOYMENT_TARGET
    export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mmacosx-version-min
    export DEPLOYMENT_TARGET_SETTING_NAME=MACOSX_DEPLOYMENT_TARGET
    export DERIVED_FILES_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
    export DERIVED_FILE_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
    export DERIVED_SOURCES_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
    export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
    export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
    export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
    export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export DEVELOPMENT_LANGUAGE=English
    export DOCUMENTATION_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj/Documentation
    export DO_HEADER_SCANNING_IN_JAM=NO
    export DSTROOT=/
    export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
    export DWARF_DSYM_FILE_NAME=BGMXPCHelper.xpc.dSYM
    export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
    export DWARF_DSYM_FOLDER_PATH=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release
    export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
    export EMBEDDED_PROFILE_NAME=embedded.provisionprofile
    export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
    export ENABLE_BITCODE=NO
    export ENABLE_HEADER_DEPENDENCIES=YES
    export ENABLE_NS_ASSERTIONS=NO
    export ENABLE_ON_DEMAND_RESOURCES=NO
    export ENABLE_STRICT_OBJC_MSGSEND=YES
    export ENABLE_TESTABILITY=NO
    export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
    export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
    export EXECUTABLES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Executables
    export EXECUTABLE_FOLDER_PATH=BGMXPCHelper.xpc/Contents/MacOS
    export EXECUTABLE_NAME=BGMXPCHelper
    export EXECUTABLE_PATH=BGMXPCHelper.xpc/Contents/MacOS/BGMXPCHelper
    export EXPANDED_CODE_SIGN_IDENTITY=
    export EXPANDED_CODE_SIGN_IDENTITY_NAME=
    export EXPANDED_PROVISIONING_PROFILE=
    export FILE_LIST=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects/LinkFileList
    export FIXED_FILES_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/FixedFiles
    export FRAMEWORKS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Frameworks
    export FRAMEWORK_FLAG_PREFIX=-framework
    export FRAMEWORK_SEARCH_PATHS="/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release "
    export FRAMEWORK_VERSION=A
    export FULL_PRODUCT_NAME=BGMXPCHelper.xpc
    export GCC3_VERSION=3.3
    export GCC_C_LANGUAGE_STANDARD=c11
    export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
    export GCC_NO_COMMON_BLOCKS=YES
    export GCC_OPTIMIZATION_LEVEL=s
    export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
    export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=0 CoreAudio_Debug=0 CoreAudio_UseSysLog=0 CoreAudio_StopOnAssert=0"
    export GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS=YES
    export GCC_TREAT_WARNINGS_AS_ERRORS=YES
    export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
    export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
    export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
    export GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS=YES
    export GCC_WARN_ABOUT_MISSING_PROTOTYPES=YES
    export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
    export GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED=YES
    export GCC_WARN_SHADOW=YES
    export GCC_WARN_STRICT_SELECTOR_MATCH=YES
    export GCC_WARN_UNDECLARED_SELECTOR=YES
    export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
    export GCC_WARN_UNUSED_FUNCTION=YES
    export GCC_WARN_UNUSED_LABEL=YES
    export GCC_WARN_UNUSED_PARAMETER=YES
    export GCC_WARN_UNUSED_VARIABLE=YES
    export GENERATE_MASTER_OBJECT_FILE=NO
    export GENERATE_PKGINFO_FILE=NO
    export GENERATE_PROFILING_CODE=NO
    export GID=0
    export GROUP=wheel
    export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
    export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
    export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
    export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
    export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
    export HEADERMAP_USES_VFS=NO
    export HEADER_SEARCH_PATHS="/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/include "
    export HIDE_BITCODE_SYMBOLS=YES
    export HOME=/var/root
    export ICONV=/usr/bin/iconv
    export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
    export INFOPLIST_FILE=BGMXPCHelper/Info.plist
    export INFOPLIST_OUTPUT_FORMAT=same-as-input
    export INFOPLIST_PATH=BGMXPCHelper.xpc/Contents/Info.plist
    export INFOPLIST_PREPROCESS=NO
    export INFOSTRINGS_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj/InfoPlist.strings
    export INSTALL_DIR="//Library/Application Support/Background Music"
    export INSTALL_GROUP=wheel
    export INSTALL_MODE_FLAG=u+w,go-w,a+rX
    export INSTALL_OWNER=root
    export INSTALL_PATH="/Library/Application Support/Background Music"
    export INSTALL_ROOT=/
    export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
    export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
    export JAVA_ARCHIVE_CLASSES=YES
    export JAVA_ARCHIVE_TYPE=JAR
    export JAVA_COMPILER=/usr/bin/javac
    export JAVA_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/Java
    export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
    export JAVA_JAR_FLAGS=cv
    export JAVA_SOURCE_SUBDIR=.
    export JAVA_USE_DEPENDENCIES=YES
    export JAVA_ZIP_FLAGS=-urg
    export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
    export KEEP_PRIVATE_EXTERNS=NO
    export LD_DEPENDENCY_INFO_FILE=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelper_dependency_info.dat
    export LD_GENERATE_MAP_FILE=NO
    export LD_MAP_FILE_PATH=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-LinkMap-normal-x86_64.txt
    export LD_NO_PIE=NO
    export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
    export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
    export LEX=lex
    export LIBRARY_FLAG_NOSPACE=YES
    export LIBRARY_FLAG_PREFIX=-l
    export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
    export LIBRARY_SEARCH_PATHS="/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release "
    export LINKER_DISPLAYS_MANGLED_NAMES=NO
    export LINK_FILE_LIST_normal_x86_64=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelper.LinkFileList
    export LINK_WITH_STANDARD_LIBRARIES=YES
    export LOCALIZABLE_CONTENT_DIR=
    export LOCALIZED_RESOURCES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj
    export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
    export LOCAL_APPS_DIR=/Applications
    export LOCAL_DEVELOPER_DIR=/Library/Developer
    export LOCAL_LIBRARY_DIR=/Library
    export LOCROOT=
    export LOCSYMROOT=
    export MACH_O_TYPE=mh_execute
    export MACOSX_DEPLOYMENT_TARGET=10.9
    export MAC_OS_X_PRODUCT_BUILD_VERSION=15E65
    export MAC_OS_X_VERSION_ACTUAL=101104
    export MAC_OS_X_VERSION_MAJOR=101100
    export MAC_OS_X_VERSION_MINOR=1104
    export MTL_ENABLE_DEBUG_INFO=NO
    export NATIVE_ARCH=i386
    export NATIVE_ARCH_32_BIT=i386
    export NATIVE_ARCH_64_BIT=x86_64
    export NATIVE_ARCH_ACTUAL=x86_64
    export NO_COMMON=YES
    export OBJECT_FILE_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects
    export OBJECT_FILE_DIR_normal=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal
    export OBJROOT=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build
    export ONLY_ACTIVE_ARCH=NO
    export OPTIMIZATION_LEVEL=0
    export OS=MACOS
    export OSAC=/usr/bin/osacompile
    export PACKAGE_TYPE=com.apple.package-type.xpc-service
    export PASCAL_STRINGS=YES
    export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Users/Okan/.cargo/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/local/MacGPG2/bin:/Library/TeX/texbin:/Users/Okan/.fzf/bin"
    export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
    export PBDEVELOPMENTPLIST_PATH=BGMXPCHelper.xpc/Contents/pbdevelopment.plist
    export PFE_FILE_C_DIALECTS=objective-c
    export PKGINFO_FILE_PATH=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/PkgInfo
    export PKGINFO_PATH=BGMXPCHelper.xpc/Contents/PkgInfo
    export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
    export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
    export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
    export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform
    export PLATFORM_DISPLAY_NAME="OS X"
    export PLATFORM_NAME=macosx
    export PLATFORM_PREFERRED_ARCH=x86_64
    export PLATFORM_PRODUCT_BUILD_VERSION=7C68
    export PLIST_FILE_OUTPUT_FORMAT=same-as-input
    export PLUGINS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/PlugIns
    export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
    export PRECOMP_DESTINATION_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/PrefixHeaders
    export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
    export PRIVATE_HEADERS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/PrivateHeaders
    export PRODUCT_BUNDLE_IDENTIFIER=com.bearisdriving.BGM.XPCHelper
    export PRODUCT_MODULE_NAME=BGMXPCHelper
    export PRODUCT_NAME=BGMXPCHelper
    export PRODUCT_SETTINGS_PATH=/Users/Okan/Desktop/BackgroundMusic/BGMApp/BGMXPCHelper/Info.plist
    export PRODUCT_TYPE=com.apple.product-type.xpc-service
    export PROFILING_CODE=NO
    export PROJECT=BGMApp
    export PROJECT_DERIVED_FILE_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/DerivedSources
    export PROJECT_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp
    export PROJECT_FILE_PATH=/Users/Okan/Desktop/BackgroundMusic/BGMApp/BGMApp.xcodeproj
    export PROJECT_NAME=BGMApp
    export PROJECT_TEMP_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build
    export PROJECT_TEMP_ROOT=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build
    export PUBLIC_HEADERS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Headers
    export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
    export REMOVE_CVS_FROM_RESOURCES=YES
    export REMOVE_GIT_FROM_RESOURCES=YES
    export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
    export REMOVE_HG_FROM_RESOURCES=YES
    export REMOVE_SVN_FROM_RESOURCES=YES
    export REZ_COLLECTOR_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/ResourceManagerResources
    export REZ_OBJECTS_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/ResourceManagerResources/Objects
    export REZ_SEARCH_PATHS="/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release "
    export RUN_CLANG_STATIC_ANALYZER=0
    export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
    export SCRIPTS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/Scripts
    export SCRIPT_INPUT_FILE_COUNT=0
    export SCRIPT_OUTPUT_FILE_COUNT=0
    export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk
    export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk
    export SDK_DIR_macosx10_11=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk
    export SDK_NAME=macosx10.11
    export SDK_NAMES=macosx10.11
    export SDK_PRODUCT_BUILD_VERSION=15C43
    export SDK_VERSION=10.11
    export SDK_VERSION_ACTUAL=101100
    export SDK_VERSION_MAJOR=101100
    export SDK_VERSION_MINOR=1100
    export SED=/usr/bin/sed
    export SEPARATE_STRIP=NO
    export SEPARATE_SYMBOL_EDIT=NO
    export SET_DIR_MODE_OWNER_GROUP=YES
    export SET_FILE_MODE_OWNER_GROUP=NO
    export SHALLOW_BUNDLE=NO
    export SHARED_DERIVED_FILE_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/DerivedSources
    export SHARED_FRAMEWORKS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/SharedFrameworks
    export SHARED_PRECOMPS_DIR=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/7.2-7C68/Xcode/SharedPrecompiledHeaders
    export SHARED_SUPPORT_FOLDER_PATH=BGMXPCHelper.xpc/Contents/SharedSupport
    export SKIP_INSTALL=NO
    export SOURCE_ROOT=/Users/Okan/Desktop/BackgroundMusic/BGMApp
    export SRCROOT=/Users/Okan/Desktop/BackgroundMusic/BGMApp
    export STRINGS_FILE_OUTPUT_ENCODING=UTF-16
    export STRIP_BITCODE_FROM_COPIED_FILES=NO
    export STRIP_INSTALLED_PRODUCT=YES
    export STRIP_STYLE=non-global
    export SUPPORTED_PLATFORMS=macosx
    export SUPPORTS_TEXT_BASED_API=NO
    export SWIFT_PLATFORM_TARGET_PREFIX=macosx
    export SYMROOT=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build
    export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
    export SYSTEM_APPS_DIR=/Applications
    export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
    export SYSTEM_DEMOS_DIR=/Applications/Extras
    export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
    export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
    export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
    export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
    export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
    export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
    export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
    export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
    export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
    export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
    export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
    export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
    export SYSTEM_LIBRARY_DIR=/System/Library
    export TARGETNAME=BGMXPCHelper
    export TARGET_BUILD_DIR="/Library/Application Support/Background Music"
    export TARGET_NAME=BGMXPCHelper
    export TARGET_TEMP_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_FILES_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_FILE_DIR=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_ROOT=/Users/Okan/Desktop/BackgroundMusic/BGMApp/build
    export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
    export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
    export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
    export UID=0
    export UNLOCALIZED_RESOURCES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources
    export UNSTRIPPED_PRODUCT=NO
    export USER=root
    export USER_APPS_DIR=/var/root/Applications
    export USER_LIBRARY_DIR=/var/root/Library
    export USE_DYNAMIC_NO_PIC=YES
    export USE_HEADERMAP=YES
    export USE_HEADER_SYMLINKS=NO
    export VALIDATE_PRODUCT=NO
    export VALID_ARCHS="i386 x86_64"
    export VERBOSE_PBXCP=NO
    export VERSIONPLIST_PATH=BGMXPCHelper.xpc/Contents/version.plist
    export VERSION_INFO_BUILDER=root
    export VERSION_INFO_FILE=BGMXPCHelper_vers.c
    export VERSION_INFO_STRING="\"@(#)PROGRAM:BGMXPCHelper  PROJECT:BGMApp-\""
    export WRAPPER_EXTENSION=xpc
    export WRAPPER_NAME=BGMXPCHelper.xpc
    export WRAPPER_SUFFIX=.xpc
    export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
    export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
    export XCODE_PRODUCT_BUILD_VERSION=7C68
    export XCODE_VERSION_ACTUAL=0720
    export XCODE_VERSION_MAJOR=0700
    export XCODE_VERSION_MINOR=0720
    export XPCSERVICES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/XPCServices
    export YACC=yacc
    export arch=x86_64
    export variant=normal
    /bin/sh -c /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Script-276972891CAFCE91007A2F7C.sh
Installed to com.bearisdriving.BGM.XPCHelper.plist to /Library/LaunchDaemons.
Started the BGMXPCHelper service.

Touch /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    /usr/bin/touch -c /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc

Strip /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc/Contents/MacOS/BGMXPCHelper
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -x /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc/Contents/MacOS/BGMXPCHelper

SetOwnerAndGroup root:wheel /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    /usr/sbin/chown -RH root:wheel /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc

SetMode u+w,go-w,a+rX /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    /bin/chmod -RH u+w,go-w,a+rX /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc

Touch build/Release/BGMXPCHelper.xpc.dSYM
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    /usr/bin/touch -c /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/BGMXPCHelper.xpc.dSYM

** INSTALL SUCCEEDED **

Installing �[1mBackground Music.app�[m� to �[1m/Applications�[m�.
Build settings from command line:
    DSTROOT = /
    RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET Background Music OF PROJECT BGMApp WITH CONFIGURATION Release ===

Check dependencies

Write auxiliary files
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-non-framework-target-headers.hmap
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music.hmap
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap
/bin/mkdir -p /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/Background\ Music.LinkFileList
write-file /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap

SymLink build/Release/Background\ Music.app /Applications/Background\ Music.app
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    /bin/ln -sfh /Applications/Background\ Music.app /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/Background\ Music.app

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMiTunes.o BGMApp/Music\ Players/BGMiTunes.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c11 -fobjc-arc -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Werror-implicit-function-declaration -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -fvisibility=hidden -Wno-sign-conversion -fprofile-instr-use=/Users/Okan/Desktop/BackgroundMusic/BGMApp/OptimizationProfiles/BGMApp.profdata -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMiTunes.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMiTunes.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMApp/BGMApp/Music\ Players/BGMiTunes.m -o /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMiTunes.o
error: Could not read profile: Unsupported profiling format version

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CARingBuffer.o PublicUtility/CARingBuffer.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility=hidden -fvisibility-inlines-hidden -Wno-sign-conversion -fprofile-instr-use=/Users/Okan/Desktop/BackgroundMusic/BGMApp/OptimizationProfiles/BGMApp.profdata -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CARingBuffer.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CARingBuffer.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMApp/PublicUtility/CARingBuffer.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CARingBuffer.o
error: Could not read profile: Unsupported profiling format version

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMVox.o BGMApp/Music\ Players/BGMVox.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c11 -fobjc-arc -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Werror-implicit-function-declaration -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -fvisibility=hidden -Wno-sign-conversion -fprofile-instr-use=/Users/Okan/Desktop/BackgroundMusic/BGMApp/OptimizationProfiles/BGMApp.profdata -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMVox.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMVox.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMApp/BGMApp/Music\ Players/BGMVox.m -o /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMVox.o
error: Could not read profile: Unsupported profiling format version

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CACFArray.o PublicUtility/CACFArray.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility=hidden -fvisibility-inlines-hidden -Wno-sign-conversion -fprofile-instr-use=/Users/Okan/Desktop/BackgroundMusic/BGMApp/OptimizationProfiles/BGMApp.profdata -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CACFArray.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CACFArray.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMApp/PublicUtility/CACFArray.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CACFArray.o
error: Could not read profile: Unsupported profiling format version
1 error generated.

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMPreferencesMenu.o BGMApp/Preferences/BGMPreferencesMenu.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fobjc-arc -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility=hidden -fvisibility-inlines-hidden -Wno-sign-conversion -fprofile-instr-use=/Users/Okan/Desktop/BackgroundMusic/BGMApp/OptimizationProfiles/BGMApp.profdata -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMPreferencesMenu.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMPreferencesMenu.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMApp/BGMApp/Preferences/BGMPreferencesMenu.mm -o /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMPreferencesMenu.o
error: Could not read profile: Unsupported profiling format version

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CAHALAudioObject.o PublicUtility/CAHALAudioObject.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility=hidden -fvisibility-inlines-hidden -Wno-sign-conversion -fprofile-instr-use=/Users/Okan/Desktop/BackgroundMusic/BGMApp/OptimizationProfiles/BGMApp.profdata -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CAHALAudioObject.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CAHALAudioObject.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMApp/PublicUtility/CAHALAudioObject.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CAHALAudioObject.o
error: Could not read profile: Unsupported profiling format version

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMMusicPlayer.o BGMApp/Music\ Players/BGMMusicPlayer.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c11 -fobjc-arc -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Werror-implicit-function-declaration -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -fvisibility=hidden -Wno-sign-conversion -fprofile-instr-use=/Users/Okan/Desktop/BackgroundMusic/BGMApp/OptimizationProfiles/BGMApp.profdata -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMMusicPlayer.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMMusicPlayer.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMApp/BGMApp/Music\ Players/BGMMusicPlayer.m -o /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMMusicPlayer.o
error: Could not read profile: Unsupported profiling format version

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CAHALAudioSystemObject.o PublicUtility/CAHALAudioSystemObject.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/Okan/Desktop/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.9 -g -fvisibility=hidden -fvisibility-inlines-hidden -Wno-sign-conversion -fprofile-instr-use=/Users/Okan/Desktop/BackgroundMusic/BGMApp/OptimizationProfiles/BGMApp.profdata -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release/include -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/Okan/Desktop/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CAHALAudioSystemObject.d --serialize-diagnostics /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CAHALAudioSystemObject.dia -c /Users/Okan/Desktop/BackgroundMusic/BGMApp/PublicUtility/CAHALAudioSystemObject.cpp -o /Users/Okan/Desktop/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CAHALAudioSystemObject.o
error: Could not read profile: Unsupported profiling format version

** INSTALL FAILED **


The following build commands failed:
    CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/CACFArray.o PublicUtility/CACFArray.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)

Install fail

The application cannot be opened because its executable is missing.
ERROR: Install script failed at line 207. This is probably a bug in the script. Feel free to report it.

Safari Autoplay

Nice work Kyle!

I only have one major issue as of now.

  1. Playing some music in iTunes
  2. Starting some music/audio in Safari turns off iTunes, as expected (works fine)
  3. Switching back to iTunes start playback
  4. Safari does not stop playing its audio (or better: doesn't get muted)

Also a fade between the playbacks would be killer "ear candy".

MBPr Mid 2015 El Cap 10.11.4 (15E65)

Volume change beep

With BackgroundMusic running, the volume change beep gets cut off sometimes. OS X 10.11.4

Install issue on OS X 10.11.4 (15E65)

I clone the source code and install it.
But the terminal returns

[latino 12:48 BackgroundMusic]$./build_and_install.sh
Installing the virtual audio device Background Music Device.driver to /Library/Audio/Plug-Ins/HAL.
Password:
ERROR: Install script failed at line 154. This is probably a bug in the script. Feel free to report it.
ERROR: Install script failed at line 62. This is probably a bug in the script. Feel free to report it.
ERROR: Build step failed. See build_and_install.log for details.
Failed command:

[latino 12:48 BackgroundMusic]$more build_and_install.log
Installing the virtual audio device ESC[1mBackground Music Device.driverESC(BESC[m to ESC[1m/Library/Audio/Plug-Ins/HALESC(BESC[m.
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance

Is it a bug? Or I just do something wrong?

Install fails on 10.10.5

This is a super exciting project that can most definitely be helpful! I tried running the install script and these errors were returned:

Installing the virtual audio device Background Music Device.driver to /Library/Audio/Plug-Ins/HAL.
ERROR: Install script failed at line 152. This is probably a bug in the script. Feel free to report it.
.ERROR: Install script failed at line 60. This is probably a bug in the script. Feel free to report it.
ERROR: Build step failed. See build_and_install.log for details.
Failed command:

Fails on El Capitan 10.11.3 (15D21)

The application cannot be opened because its executable is missing.
ERROR: Install script failed at line 207. This is probably a bug in the script. Feel free to report it.

Install failed until manually created folder

I have some weird permissions in /usr/local from other utilities I've installed, so it gave me the warning that permissions were bad (not owned by root). I said yes, install anyway. However, the backup directory in Application Support ("Background Music") as folder name didn't get created automatically and the script failed with mysterious errors down the line probably because of that. Once I created that directory manually, chowning it to root and setting appropriate permissions, the script worked when I re-ran it and said yes, install anyway. Might be a moot point if you're creating a .dmg installer, but something that may be off about the script.

Thanks though, it works amazingly well!

Suggestion: Ignored Apps

Great idea for an app!

There are many apps that only product short sounds for notifications. Messages, for example, makes sounds when you're messaged. An FTP client might make a sound when a file finishes uploading.

I'd like to be able to tell BackgroundMusic to ignore apps like these so my music isn't interrupted by short pauses.

Installation fails (OS X El Capitan)

Nice project!

Unfortunately the Installation instructions seem to fail (OS X El Capitan 10.11.4 (15E65) with XCode Version 7.3 (7D175)):

 ~/P/o/BackgroundMusic> sudo build_and_install.sh                              Sun 10 Apr 16:17:03 2016
Installing the virtual audio device Background Music Device.driver to /Library/Audio/Plug-Ins/HAL.
Installing BGMXPCHelper.xpc to /Library/Application Support/Background Music.
Installing Background Music.app to /Applications.
.ERROR: Install script failed at line 185. This is probably a bug in the script. Feel free to report it.
ERROR: Install script failed at line 60. This is probably a bug in the script. Feel free to report it.
ERROR: Build step failed. See build_and_install.log for details.
Failed command:
    sudo xcodebuild -project BGMApp/BGMApp.xcodeproj -target Background Music -configuration Release RUN_CLANG_STATIC_ANALYZER=0 DSTROOT=/ install

build_and_install.log is as follows:

Installing the virtual audio device �[1mBackground Music Device.driver�(B�[m to �[1m/Library/Audio/Plug-Ins/HAL�(B�[m.
Build settings from command line:
    DSTROOT = /
    RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET Background Music Device OF PROJECT BGMDriver WITH CONFIGURATION Release ===

Check dependencies

Create product structure
/bin/mkdir -p /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents
/bin/mkdir -p /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/MacOS
/bin/mkdir -p /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/Resources

ProcessInfoPlistFile /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/Info.plist BGMDriver/Info.plist
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver
    builtin-infoPlistUtility /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver/BGMDriver/Info.plist -expandbuildsettings -platform macosx -o /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/Info.plist

Ld /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/MacOS/Background\ Music\ Device normal x86_64
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver
    export MACOSX_DEPLOYMENT_TARGET=10.9
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -bundle -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -L/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver/build/Release -F/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver/build/Release -filelist /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/Background\ Music\ Device.LinkFileList -mmacosx-version-min=10.9 -dead_strip -stdlib=libc++ -fobjc-arc -fobjc-link-runtime -framework Foundation -framework CoreAudio -framework CoreFoundation -Xlinker -dependency_info -Xlinker /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver/build/BGMDriver.build/Release/Background\ Music\ Device.build/Objects-normal/x86_64/Background\ Music\ Device_dependency_info.dat -o /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/MacOS/Background\ Music\ Device

GenerateDSYMFile build/Release/Background\ Music\ Device.driver.dSYM /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/MacOS/Background\ Music\ Device
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/MacOS/Background\ Music\ Device -o /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver/build/Release/Background\ Music\ Device.driver.dSYM

CpResource BGMDriver/DeviceIcon.icns /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/Resources/DeviceIcon.icns
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-debug-symbols -strip-tool /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver/BGMDriver/DeviceIcon.icns /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/Resources

Touch /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver
    /usr/bin/touch -c /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver

Strip /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/MacOS/Background\ Music\ Device
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -x /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver/Contents/MacOS/Background\ Music\ Device

SetOwnerAndGroup root:wheel /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver
    /usr/sbin/chown -RH root:wheel /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver

SetMode u+w,go-w,a+rX /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver
    /bin/chmod -RH u+w,go-w,a+rX /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver

Touch build/Release/Background\ Music\ Device.driver.dSYM
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver
    /usr/bin/touch -c /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMDriver/build/Release/Background\ Music\ Device.driver.dSYM

** INSTALL SUCCEEDED **

Installing �[1mBGMXPCHelper.xpc�(B�[m to �[1m/Library/Application Support/Background Music�(B�[m.
Build settings from command line:
    DSTROOT = /
    INSTALL_PATH = /Library/Application Support/Background Music
    RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET BGMXPCHelper OF PROJECT BGMApp WITH CONFIGURATION Release ===

Check dependencies

PhaseScriptExecution Run\ Script build/BGMApp.build/Release/BGMXPCHelper.build/Script-276972891CAFCE91007A2F7C.sh
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp
    export ACTION=install
    export ALTERNATE_GROUP=wheel
    export ALTERNATE_MODE=u+w,go-w,a+rX
    export ALTERNATE_OWNER=root
    export ALWAYS_SEARCH_USER_PATHS=NO
    export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
    export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
    export APPLE_INTERNAL_DIR=/AppleInternal
    export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
    export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
    export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
    export APPLICATION_EXTENSION_API_ONLY=NO
    export APPLY_RULES_IN_COPY_FILES=NO
    export ARCHS=x86_64
    export ARCHS_STANDARD=x86_64
    export ARCHS_STANDARD_32_64_BIT="x86_64 i386"
    export ARCHS_STANDARD_32_BIT=i386
    export ARCHS_STANDARD_64_BIT=x86_64
    export ARCHS_STANDARD_INCLUDING_64_BIT=x86_64
    export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
    export BITCODE_GENERATION_MODE=bitcode
    export BUILD_ACTIVE_RESOURCES_ONLY=NO
    export BUILD_COMPONENTS="headers build"
    export BUILD_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build
    export BUILD_ROOT=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build
    export BUILD_STYLE=
    export BUILD_VARIANTS=normal
    export BUILT_PRODUCTS_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release
    export CACHE_ROOT=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/7.3-7D175/Xcode
    export CCHROOT=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/7.3-7D175/Xcode
    export CHMOD=/bin/chmod
    export CHOWN=/usr/sbin/chown
    export CLANG_ANALYZER_SECURITY_FLOATLOOPCOUNTER=YES
    export CLANG_CXX_LANGUAGE_STANDARD=c++0x
    export CLANG_CXX_LIBRARY=libc++
    export CLANG_ENABLE_MODULES=YES
    export CLANG_ENABLE_OBJC_ARC=YES
    export CLANG_MODULES_BUILD_SESSION_FILE=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation
    export CLANG_WARN_ASSIGN_ENUM=YES
    export CLANG_WARN_BOOL_CONVERSION=YES
    export CLANG_WARN_CONSTANT_CONVERSION=YES
    export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
    export CLANG_WARN_EMPTY_BODY=YES
    export CLANG_WARN_ENUM_CONVERSION=YES
    export CLANG_WARN_IMPLICIT_SIGN_CONVERSION=NO
    export CLANG_WARN_INT_CONVERSION=YES
    export CLANG_WARN_NULLABLE_TO_NONNULL_CONVERSION=YES
    export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
    export CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION=YES
    export CLANG_WARN_UNREACHABLE_CODE=YES
    export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
    export CLASS_FILE_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/JavaClasses
    export CLEAN_PRECOMPS=YES
    export CLONE_HEADERS=NO
    export CODESIGNING_FOLDER_PATH="/Library/Application Support/Background Music/BGMXPCHelper.xpc"
    export CODE_SIGNING_ALLOWED=YES
    export COLOR_DIAGNOSTICS=NO
    export COMBINE_HIDPI_IMAGES=NO
    export COMMAND_MODE=legacy
    export COMPOSITE_SDK_DIRS=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/7.3-7D175/Xcode/CompositeSDKs
    export CONFIGURATION=Release
    export CONFIGURATION_BUILD_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release
    export CONFIGURATION_TEMP_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release
    export CONTENTS_FOLDER_PATH=BGMXPCHelper.xpc/Contents
    export COPYING_PRESERVES_HFS_DATA=NO
    export COPY_HEADERS_RUN_UNIFDEF=NO
    export COPY_PHASE_STRIP=NO
    export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
    export CP=/bin/cp
    export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
    export CURRENT_ARCH=x86_64
    export CURRENT_VARIANT=normal
    export DEAD_CODE_STRIPPING=YES
    export DEBUGGING_SYMBOLS=YES
    export DEBUG_INFORMATION_FORMAT=dwarf-with-dsym
    export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
    export DEFAULT_KEXT_INSTALL_PATH=/Library/Extensions
    export DEFINES_MODULE=NO
    export DEPLOYMENT_LOCATION=YES
    export DEPLOYMENT_POSTPROCESSING=YES
    export DEPLOYMENT_TARGET_CLANG_ENV_NAME=MACOSX_DEPLOYMENT_TARGET
    export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mmacosx-version-min
    export DEPLOYMENT_TARGET_SETTING_NAME=MACOSX_DEPLOYMENT_TARGET
    export DERIVED_FILES_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
    export DERIVED_FILE_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
    export DERIVED_SOURCES_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
    export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
    export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
    export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
    export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export DEVELOPMENT_LANGUAGE=English
    export DOCUMENTATION_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj/Documentation
    export DO_HEADER_SCANNING_IN_JAM=NO
    export DSTROOT=/
    export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
    export DWARF_DSYM_FILE_NAME=BGMXPCHelper.xpc.dSYM
    export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
    export DWARF_DSYM_FOLDER_PATH=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release
    export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
    export EMBEDDED_PROFILE_NAME=embedded.provisionprofile
    export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
    export ENABLE_BITCODE=NO
    export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
    export ENABLE_HEADER_DEPENDENCIES=YES
    export ENABLE_NS_ASSERTIONS=NO
    export ENABLE_ON_DEMAND_RESOURCES=NO
    export ENABLE_STRICT_OBJC_MSGSEND=YES
    export ENABLE_TESTABILITY=NO
    export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
    export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
    export EXECUTABLES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Executables
    export EXECUTABLE_FOLDER_PATH=BGMXPCHelper.xpc/Contents/MacOS
    export EXECUTABLE_NAME=BGMXPCHelper
    export EXECUTABLE_PATH=BGMXPCHelper.xpc/Contents/MacOS/BGMXPCHelper
    export EXPANDED_CODE_SIGN_IDENTITY=
    export EXPANDED_CODE_SIGN_IDENTITY_NAME=
    export EXPANDED_PROVISIONING_PROFILE=
    export FILE_LIST=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects/LinkFileList
    export FIXED_FILES_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/FixedFiles
    export FRAMEWORKS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Frameworks
    export FRAMEWORK_FLAG_PREFIX=-framework
    export FRAMEWORK_SEARCH_PATHS="/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release "
    export FRAMEWORK_VERSION=A
    export FULL_PRODUCT_NAME=BGMXPCHelper.xpc
    export GCC3_VERSION=3.3
    export GCC_C_LANGUAGE_STANDARD=c11
    export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
    export GCC_NO_COMMON_BLOCKS=YES
    export GCC_OPTIMIZATION_LEVEL=s
    export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
    export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=0 CoreAudio_Debug=0 CoreAudio_UseSysLog=0 CoreAudio_StopOnAssert=0"
    export GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS=YES
    export GCC_TREAT_WARNINGS_AS_ERRORS=YES
    export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
    export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
    export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
    export GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS=YES
    export GCC_WARN_ABOUT_MISSING_PROTOTYPES=YES
    export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
    export GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED=YES
    export GCC_WARN_SHADOW=YES
    export GCC_WARN_STRICT_SELECTOR_MATCH=YES
    export GCC_WARN_UNDECLARED_SELECTOR=YES
    export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
    export GCC_WARN_UNUSED_FUNCTION=YES
    export GCC_WARN_UNUSED_LABEL=YES
    export GCC_WARN_UNUSED_PARAMETER=YES
    export GCC_WARN_UNUSED_VARIABLE=YES
    export GENERATE_MASTER_OBJECT_FILE=NO
    export GENERATE_PKGINFO_FILE=NO
    export GENERATE_PROFILING_CODE=NO
    export GID=0
    export GROUP=wheel
    export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
    export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
    export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
    export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
    export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
    export HEADERMAP_USES_VFS=NO
    export HEADER_SEARCH_PATHS="/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release/include "
    export HIDE_BITCODE_SYMBOLS=YES
    export HOME=/var/root
    export ICONV=/usr/bin/iconv
    export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
    export INFOPLIST_FILE=BGMXPCHelper/Info.plist
    export INFOPLIST_OUTPUT_FORMAT=same-as-input
    export INFOPLIST_PATH=BGMXPCHelper.xpc/Contents/Info.plist
    export INFOPLIST_PREPROCESS=NO
    export INFOSTRINGS_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj/InfoPlist.strings
    export INSTALL_DIR="//Library/Application Support/Background Music"
    export INSTALL_GROUP=wheel
    export INSTALL_MODE_FLAG=u+w,go-w,a+rX
    export INSTALL_OWNER=root
    export INSTALL_PATH="/Library/Application Support/Background Music"
    export INSTALL_ROOT=/
    export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
    export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
    export JAVA_ARCHIVE_CLASSES=YES
    export JAVA_ARCHIVE_TYPE=JAR
    export JAVA_COMPILER=/usr/bin/javac
    export JAVA_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/Java
    export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
    export JAVA_JAR_FLAGS=cv
    export JAVA_SOURCE_SUBDIR=.
    export JAVA_USE_DEPENDENCIES=YES
    export JAVA_ZIP_FLAGS=-urg
    export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
    export KEEP_PRIVATE_EXTERNS=NO
    export LD_DEPENDENCY_INFO_FILE=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelper_dependency_info.dat
    export LD_GENERATE_MAP_FILE=NO
    export LD_MAP_FILE_PATH=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-LinkMap-normal-x86_64.txt
    export LD_NO_PIE=NO
    export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
    export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
    export LEX=lex
    export LIBRARY_FLAG_NOSPACE=YES
    export LIBRARY_FLAG_PREFIX=-l
    export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
    export LIBRARY_SEARCH_PATHS="/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release "
    export LINKER_DISPLAYS_MANGLED_NAMES=NO
    export LINK_FILE_LIST_normal_x86_64=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelper.LinkFileList
    export LINK_WITH_STANDARD_LIBRARIES=YES
    export LOCALIZABLE_CONTENT_DIR=
    export LOCALIZED_RESOURCES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj
    export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
    export LOCAL_APPS_DIR=/Applications
    export LOCAL_DEVELOPER_DIR=/Library/Developer
    export LOCAL_LIBRARY_DIR=/Library
    export LOCROOT=
    export LOCSYMROOT=
    export MACH_O_TYPE=mh_execute
    export MACOSX_DEPLOYMENT_TARGET=10.9
    export MAC_OS_X_PRODUCT_BUILD_VERSION=15E65
    export MAC_OS_X_VERSION_ACTUAL=101104
    export MAC_OS_X_VERSION_MAJOR=101100
    export MAC_OS_X_VERSION_MINOR=1104
    export MTL_ENABLE_DEBUG_INFO=NO
    export NATIVE_ARCH=i386
    export NATIVE_ARCH_32_BIT=i386
    export NATIVE_ARCH_64_BIT=x86_64
    export NATIVE_ARCH_ACTUAL=x86_64
    export NO_COMMON=YES
    export OBJECT_FILE_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects
    export OBJECT_FILE_DIR_normal=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal
    export OBJROOT=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build
    export ONLY_ACTIVE_ARCH=NO
    export OS=MACOS
    export OSAC=/usr/bin/osacompile
    export PACKAGE_TYPE=com.apple.package-type.xpc-service
    export PASCAL_STRINGS=YES
    export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Library/TeX/texbin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin"
    export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
    export PBDEVELOPMENTPLIST_PATH=BGMXPCHelper.xpc/Contents/pbdevelopment.plist
    export PFE_FILE_C_DIALECTS=objective-c
    export PKGINFO_FILE_PATH=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/PkgInfo
    export PKGINFO_PATH=BGMXPCHelper.xpc/Contents/PkgInfo
    export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
    export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
    export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
    export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform
    export PLATFORM_DISPLAY_NAME="OS X"
    export PLATFORM_NAME=macosx
    export PLATFORM_PREFERRED_ARCH=x86_64
    export PLATFORM_PRODUCT_BUILD_VERSION=7D175
    export PLIST_FILE_OUTPUT_FORMAT=same-as-input
    export PLUGINS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/PlugIns
    export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
    export PRECOMP_DESTINATION_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/PrefixHeaders
    export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
    export PRIVATE_HEADERS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/PrivateHeaders
    export PRODUCT_BUNDLE_IDENTIFIER=com.bearisdriving.BGM.XPCHelper
    export PRODUCT_MODULE_NAME=BGMXPCHelper
    export PRODUCT_NAME=BGMXPCHelper
    export PRODUCT_SETTINGS_PATH=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/BGMXPCHelper/Info.plist
    export PRODUCT_TYPE=com.apple.product-type.xpc-service
    export PROFILING_CODE=NO
    export PROJECT=BGMApp
    export PROJECT_DERIVED_FILE_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/DerivedSources
    export PROJECT_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp
    export PROJECT_FILE_PATH=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/BGMApp.xcodeproj
    export PROJECT_NAME=BGMApp
    export PROJECT_TEMP_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build
    export PROJECT_TEMP_ROOT=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build
    export PUBLIC_HEADERS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Headers
    export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
    export REMOVE_CVS_FROM_RESOURCES=YES
    export REMOVE_GIT_FROM_RESOURCES=YES
    export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
    export REMOVE_HG_FROM_RESOURCES=YES
    export REMOVE_SVN_FROM_RESOURCES=YES
    export REZ_COLLECTOR_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/ResourceManagerResources
    export REZ_OBJECTS_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/ResourceManagerResources/Objects
    export REZ_SEARCH_PATHS="/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release "
    export RUN_CLANG_STATIC_ANALYZER=0
    export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
    export SCRIPTS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/Scripts
    export SCRIPT_INPUT_FILE_COUNT=0
    export SCRIPT_OUTPUT_FILE_COUNT=0
    export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk
    export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk
    export SDK_DIR_macosx10_11=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk
    export SDK_NAME=macosx10.11
    export SDK_NAMES=macosx10.11
    export SDK_PRODUCT_BUILD_VERSION=15E60
    export SDK_VERSION=10.11
    export SDK_VERSION_ACTUAL=101100
    export SDK_VERSION_MAJOR=101100
    export SDK_VERSION_MINOR=1100
    export SED=/usr/bin/sed
    export SEPARATE_STRIP=NO
    export SEPARATE_SYMBOL_EDIT=NO
    export SET_DIR_MODE_OWNER_GROUP=YES
    export SET_FILE_MODE_OWNER_GROUP=NO
    export SHALLOW_BUNDLE=NO
    export SHARED_DERIVED_FILE_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release/DerivedSources
    export SHARED_FRAMEWORKS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/SharedFrameworks
    export SHARED_PRECOMPS_DIR=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/7.3-7D175/Xcode/SharedPrecompiledHeaders
    export SHARED_SUPPORT_FOLDER_PATH=BGMXPCHelper.xpc/Contents/SharedSupport
    export SKIP_INSTALL=NO
    export SOURCE_ROOT=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp
    export SRCROOT=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp
    export STRINGS_FILE_OUTPUT_ENCODING=UTF-16
    export STRIP_BITCODE_FROM_COPIED_FILES=NO
    export STRIP_INSTALLED_PRODUCT=YES
    export STRIP_STYLE=non-global
    export SUPPORTED_PLATFORMS=macosx
    export SUPPORTS_TEXT_BASED_API=NO
    export SWIFT_PLATFORM_TARGET_PREFIX=macosx
    export SYMROOT=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build
    export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
    export SYSTEM_APPS_DIR=/Applications
    export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
    export SYSTEM_DEMOS_DIR=/Applications/Extras
    export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
    export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
    export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
    export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
    export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
    export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
    export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
    export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
    export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
    export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
    export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
    export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
    export SYSTEM_LIBRARY_DIR=/System/Library
    export TAPI_VERIFY_MODE=ErrorsOnly
    export TARGETNAME=BGMXPCHelper
    export TARGET_BUILD_DIR="/Library/Application Support/Background Music"
    export TARGET_NAME=BGMXPCHelper
    export TARGET_TEMP_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_FILES_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_FILE_DIR=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_ROOT=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build
    export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
    export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
    export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
    export UID=0
    export UNLOCALIZED_RESOURCES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources
    export UNSTRIPPED_PRODUCT=NO
    export USER=root
    export USER_APPS_DIR=/var/root/Applications
    export USER_LIBRARY_DIR=/var/root/Library
    export USE_DYNAMIC_NO_PIC=YES
    export USE_HEADERMAP=YES
    export USE_HEADER_SYMLINKS=NO
    export VALIDATE_PRODUCT=NO
    export VALID_ARCHS="i386 x86_64"
    export VERBOSE_PBXCP=NO
    export VERSIONPLIST_PATH=BGMXPCHelper.xpc/Contents/version.plist
    export VERSION_INFO_BUILDER=root
    export VERSION_INFO_FILE=BGMXPCHelper_vers.c
    export VERSION_INFO_STRING="\"@(#)PROGRAM:BGMXPCHelper  PROJECT:BGMApp-\""
    export WRAPPER_EXTENSION=xpc
    export WRAPPER_NAME=BGMXPCHelper.xpc
    export WRAPPER_SUFFIX=.xpc
    export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
    export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
    export XCODE_PRODUCT_BUILD_VERSION=7D175
    export XCODE_VERSION_ACTUAL=0730
    export XCODE_VERSION_MAJOR=0700
    export XCODE_VERSION_MINOR=0730
    export XPCSERVICES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/XPCServices
    export YACC=yacc
    export arch=x86_64
    export variant=normal
    /bin/sh -c /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Script-276972891CAFCE91007A2F7C.sh
Installed to com.bearisdriving.BGM.XPCHelper.plist to /Library/LaunchDaemons.
Started the BGMXPCHelper service.

SetOwnerAndGroup root:wheel /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp
    /usr/sbin/chown -RH root:wheel /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc

SetMode u+w,go-w,a+rX /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp
    /bin/chmod -RH u+w,go-w,a+rX /Library/Application\ Support/Background\ Music/BGMXPCHelper.xpc

** INSTALL SUCCEEDED **

Installing �[1mBackground Music.app�(B�[m to �[1m/Applications�(B�[m.
Build settings from command line:
    DSTROOT = /
    RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET Background Music OF PROJECT BGMApp WITH CONFIGURATION Release ===

Check dependencies

Create product structure
/bin/mkdir -p /Applications/Background\ Music.app/Contents
/bin/mkdir -p /Applications/Background\ Music.app/Contents/MacOS
/bin/mkdir -p /Applications/Background\ Music.app/Contents/Resources

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMiTunes.o BGMApp/Music\ Players/BGMiTunes.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c11 -fobjc-arc -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Werror-implicit-function-declaration -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -fvisibility=hidden -Wno-sign-conversion -fprofile-instr-use=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/OptimizationProfiles/BGMApp.profdata -iquote /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release/include -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMiTunes.d --serialize-diagnostics /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMiTunes.dia -c /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/BGMApp/Music\ Players/BGMiTunes.m -o /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMiTunes.o

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMMusicPlayer.o BGMApp/Music\ Players/BGMMusicPlayer.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c11 -fobjc-arc -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Werror-implicit-function-declaration -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -fvisibility=hidden -Wno-sign-conversion -fprofile-instr-use=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/OptimizationProfiles/BGMApp.profdata -iquote /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release/include -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMMusicPlayer.d --serialize-diagnostics /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMMusicPlayer.dia -c /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/BGMApp/Music\ Players/BGMMusicPlayer.m -o /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMMusicPlayer.o
/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.m:79:21: error: unused variable 'mpName' [-Werror,-Wunused-variable]
        const char* mpName = [[[self class] name] UTF8String];
                    ^
/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.m:108:40: error: unused parameter 'event' [-Werror,-Wunused-parameter]
- (id) eventDidFail:(const AppleEvent*)event withError:(NSError*)error {
                                       ^
/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.m:108:66: error: unused parameter 'error' [-Werror,-Wunused-parameter]
- (id) eventDidFail:(const AppleEvent*)event withError:(NSError*)error {
                                                                 ^
3 errors generated.

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMSpotify.o BGMApp/Music\ Players/BGMSpotify.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c11 -fobjc-arc -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Werror-implicit-function-declaration -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -fvisibility=hidden -Wno-sign-conversion -fprofile-instr-use=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/OptimizationProfiles/BGMApp.profdata -iquote /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release/include -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMSpotify.d --serialize-diagnostics /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMSpotify.dia -c /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/BGMApp/Music\ Players/BGMSpotify.m -o /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMSpotify.o

CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMVLC.o BGMApp/Music\ Players/BGMVLC.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
    cd /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c11 -fobjc-arc -fmodules -gmodules -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -flto -fno-common -Werror -Werror-implicit-function-declaration -Wmissing-field-initializers -Wmissing-prototypes -Werror=return-type -Wunreachable-code -Wnullable-to-nonnull-conversion -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wmissing-braces -Wparentheses -Wswitch -Wunused-function -Wunused-label -Wunused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wconditional-uninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wconversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wassign-enum -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wstrict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=0 -DCoreAudio_Debug=0 -DCoreAudio_UseSysLog=0 -DCoreAudio_StopOnAssert=0 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -fasm-blocks -funroll-loops -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.9 -g -fvisibility=hidden -Wno-sign-conversion -fprofile-instr-use=/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/OptimizationProfiles/BGMApp.profdata -iquote /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-generated-files.hmap -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-own-target-headers.hmap -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-all-target-headers.hmap -iquote /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Background\ Music-project-headers.hmap -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release/include -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources/x86_64 -I/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/DerivedSources -Wno-profile-instr-out-of-date -F/Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/Release -MMD -MT dependencies -MF /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMVLC.d --serialize-diagnostics /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMVLC.dia -c /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/BGMApp/Music\ Players/BGMVLC.m -o /Users/dhruvbhatia/Projects/oss/BackgroundMusic/BGMApp/build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMVLC.o

** INSTALL FAILED **


The following build commands failed:
    CompileC build/BGMApp.build/Release/Background\ Music.build/Objects-normal/x86_64/BGMMusicPlayer.o BGMApp/Music\ Players/BGMMusicPlayer.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)

Any ideas?

Suggestion: Compatibility with BeardedSpice

BeardedSpice is a utility to map play/pause commands to a host of different media apps, including a bunch of web based ones, e.g. Pandora, TuneIn, Subsonic, etc.

It might be useful to look into how they handle that interaction, or to provide a simple interface to use BS as the "player" in BGM and let it handle the dispatch of the play/pause commands.

Here is the link to the repo: https://github.com/beardedspice/beardedspice

Install fails on 10.10.5

First awesome project!

I am getting this error on the install script.

I am using os x 10.10.5.

Installing Background Music.app to /Applications.
Restarting coreaudiod to load BGMDriver.
Invalid signal.
Usage: launchctl kill <signal-number|signal-name> <service-target>
ERROR: Install script failed at line 200. This is probably a bug in the script. Feel free to report it.

Error killing coreaudiod

I have a problem with build_and_install.sh on OS X Yosemite (10.10.5)

Changing

sudo launchctl kill SIGTERM system/com.apple.audio.coreaudiod

into

sudo launchctl kill -15 system/com.apple.audio.coreaudiod

solved the problem.

Installing the virtual audio device Background Music Device.driver to /Library/Audio/Plug-Ins/HAL.
Password:
Installing BGMXPCHelper.xpc to /Library/Application Support/Background Music.
Installing Background Music.app to /Applications.
Restarting coreaudiod to load BGMDriver.
Invalid signal.
Usage: launchctl kill <signal-number|signal-name> <service-target>
ERROR: Install script failed at line 200. This is probably a bug in the script. Feel free to report it.

Google Music

I'm not sure how well this'd work since it's not a native app, but it'd be cool if this could use google music as a music source.

BUG: Autopause fails with new Mail sounds

Reproducible in Mail or Airmail, and probably other mail clients too. The new mail sound is long enough to pause my playing music in Spotify/iTunes/etc, but short enough to end while the pause is still processing or something, so my music never gets resumed. It's a little annoying since I've had to turn off new mail sounds.

It'd be an awesome feature if you could turn off auto pause for certain apps. Thanks!

cmus support

cmus is a command-line music player.

I notice that BGMApp gets its process list as an array of NSRunningApplication instances returned by NSWorkspace. However, even if the activation policy filter in -insertMenuItemsForApps: is removed, this array never contains an instance for the running 'cmus' process. Not sure why that is.

Phone Call Compatibility

I tried to make a phone call on my Mac and there was no audio of the call. When the call was ringing, the music paused and then played again between the rings.

Fail on install at lines 172 and 62

Just pulled the most from master and tried to run the build_and_install.sh script, and I am getting this error:

Installing the virtual audio device Background Music Device.driver to /Library/Audio/Plug-Ins/HAL.
Password:
Installing BGMXPCHelper.xpc to /Library/Application Support/Background Music.
ERROR: Install script failed at line 172. This is probably a bug in the script. Feel free to report it.
ERROR: Install script failed at line 62. This is probably a bug in the script. Feel free to report it.
ERROR: Build step failed. See build_and_install.log for details.
Failed command:
    sudo xcodebuild -project BGMApp/BGMApp.xcodeproj -target BGMXPCHelper -configuration Release RUN_CLANG_STATIC_ANALYZER=0 DSTROOT=/ INSTALL_PATH=/Library/Application Support/Background Music install

This is the content of build_and_install.log:

Installing the virtual audio device �[1mBackground Music Device.driver�(B�[m to �[1m/Library/Audio/Plug-Ins/HAL�(B�[m.
Build settings from command line:
    DSTROOT = /
    RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET Background Music Device OF PROJECT BGMDriver WITH CONFIGURATION Release ===

Check dependencies

SetOwnerAndGroup root:wheel /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver
    cd /Users/ariera/dev/vendor/BackgroundMusic/BGMDriver
    /usr/sbin/chown -RH root:wheel /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver

SetMode u+w,go-w,a+rX /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver
    cd /Users/ariera/dev/vendor/BackgroundMusic/BGMDriver
    /bin/chmod -RH u+w,go-w,a+rX /Library/Audio/Plug-Ins/HAL/Background\ Music\ Device.driver

** INSTALL SUCCEEDED **

Installing �[1mBGMXPCHelper.xpc�(B�[m to �[1m/Library/Application Support/Background Music�(B�[m.
Build settings from command line:
    DSTROOT = /
    INSTALL_PATH = /Library/Application Support/Background Music
    RUN_CLANG_STATIC_ANALYZER = 0

=== BUILD TARGET BGMXPCHelper OF PROJECT BGMApp WITH CONFIGURATION Release ===

Check dependencies

PhaseScriptExecution Run\ Script build/BGMApp.build/Release/BGMXPCHelper.build/Script-276972891CAFCE91007A2F7C.sh
    cd /Users/ariera/dev/vendor/BackgroundMusic/BGMApp
    export ACTION=install
    export ALTERNATE_GROUP=wheel
    export ALTERNATE_MODE=u+w,go-w,a+rX
    export ALTERNATE_OWNER=root
    export ALWAYS_SEARCH_USER_PATHS=NO
    export ALWAYS_USE_SEPARATE_HEADERMAPS=YES
    export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
    export APPLE_INTERNAL_DIR=/AppleInternal
    export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
    export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
    export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
    export APPLICATION_EXTENSION_API_ONLY=NO
    export APPLY_RULES_IN_COPY_FILES=NO
    export ARCHS=x86_64
    export ARCHS_STANDARD=x86_64
    export ARCHS_STANDARD_32_64_BIT="x86_64 i386"
    export ARCHS_STANDARD_32_BIT=i386
    export ARCHS_STANDARD_64_BIT=x86_64
    export ARCHS_STANDARD_INCLUDING_64_BIT=x86_64
    export AVAILABLE_PLATFORMS="iphonesimulator macosx iphoneos"
    export BUILD_COMPONENTS="headers build"
    export BUILD_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build
    export BUILD_ROOT=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build
    export BUILD_STYLE=
    export BUILD_VARIANTS=normal
    export BUILT_PRODUCTS_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/Release
    export CACHE_ROOT=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/6.4-6E35b/Xcode
    export CCHROOT=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/6.4-6E35b/Xcode
    export CHMOD=/bin/chmod
    export CHOWN=/usr/sbin/chown
    export CLANG_ANALYZER_SECURITY_FLOATLOOPCOUNTER=YES
    export CLANG_CXX_LANGUAGE_STANDARD=c++0x
    export CLANG_CXX_LIBRARY=libc++
    export CLANG_ENABLE_MODULES=YES
    export CLANG_ENABLE_OBJC_ARC=YES
    export CLANG_MODULES_BUILD_SESSION_FILE=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/org.llvm.clang/ModuleCache/Session.modulevalidation
    export CLANG_WARN_ASSIGN_ENUM=YES
    export CLANG_WARN_BOOL_CONVERSION=YES
    export CLANG_WARN_CONSTANT_CONVERSION=YES
    export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
    export CLANG_WARN_EMPTY_BODY=YES
    export CLANG_WARN_ENUM_CONVERSION=YES
    export CLANG_WARN_IMPLICIT_SIGN_CONVERSION=NO
    export CLANG_WARN_INT_CONVERSION=YES
    export CLANG_WARN_NULLABLE_TO_NONNULL_CONVERSION=YES
    export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
    export CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION=YES
    export CLANG_WARN_UNREACHABLE_CODE=YES
    export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
    export CLASS_FILE_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/JavaClasses
    export CLEAN_PRECOMPS=YES
    export CLONE_HEADERS=NO
    export CODESIGNING_FOLDER_PATH="/Library/Application Support/Background Music/BGMXPCHelper.xpc"
    export CODE_SIGNING_ALLOWED=YES
    export COLOR_DIAGNOSTICS=NO
    export COMBINE_HIDPI_IMAGES=NO
    export COMMAND_MODE=legacy
    export COMPOSITE_SDK_DIRS=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/6.4-6E35b/Xcode/CompositeSDKs
    export CONFIGURATION=Release
    export CONFIGURATION_BUILD_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/Release
    export CONFIGURATION_TEMP_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release
    export CONTENTS_FOLDER_PATH=BGMXPCHelper.xpc/Contents
    export COPYING_PRESERVES_HFS_DATA=NO
    export COPY_PHASE_STRIP=NO
    export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
    export CP=/bin/cp
    export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
    export CURRENT_ARCH=x86_64
    export CURRENT_VARIANT=normal
    export DEAD_CODE_STRIPPING=YES
    export DEBUGGING_SYMBOLS=YES
    export DEBUG_INFORMATION_FORMAT=dwarf-with-dsym
    export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
    export DEFAULT_KEXT_INSTALL_PATH=/Library/Extensions
    export DEFINES_MODULE=NO
    export DEPLOYMENT_LOCATION=YES
    export DEPLOYMENT_POSTPROCESSING=YES
    export DERIVED_FILES_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
    export DERIVED_FILE_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
    export DERIVED_SOURCES_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/DerivedSources
    export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
    export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
    export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
    export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export DEVELOPMENT_LANGUAGE=English
    export DOCUMENTATION_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj/Documentation
    export DO_HEADER_SCANNING_IN_JAM=NO
    export DSTROOT=/
    export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
    export DWARF_DSYM_FILE_NAME=BGMXPCHelper.xpc.dSYM
    export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
    export DWARF_DSYM_FOLDER_PATH=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/Release
    export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
    export EMBEDDED_PROFILE_NAME=embedded.provisionprofile
    export ENABLE_HEADER_DEPENDENCIES=YES
    export ENABLE_NS_ASSERTIONS=NO
    export ENABLE_STRICT_OBJC_MSGSEND=YES
    export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
    export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch (*) .DS_Store CVS .svn .git .hg *.xcodeproj *.xcode *.pbproj *.pbxproj"
    export EXECUTABLES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Executables
    export EXECUTABLE_FOLDER_PATH=BGMXPCHelper.xpc/Contents/MacOS
    export EXECUTABLE_NAME=BGMXPCHelper
    export EXECUTABLE_PATH=BGMXPCHelper.xpc/Contents/MacOS/BGMXPCHelper
    export EXPANDED_CODE_SIGN_IDENTITY=
    export EXPANDED_CODE_SIGN_IDENTITY_NAME=
    export EXPANDED_PROVISIONING_PROFILE=
    export FILE_LIST=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects/LinkFileList
    export FIXED_FILES_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/FixedFiles
    export FRAMEWORKS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Frameworks
    export FRAMEWORK_FLAG_PREFIX=-framework
    export FRAMEWORK_SEARCH_PATHS="/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/Release "
    export FRAMEWORK_VERSION=A
    export FULL_PRODUCT_NAME=BGMXPCHelper.xpc
    export GCC3_VERSION=3.3
    export GCC_C_LANGUAGE_STANDARD=c11
    export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
    export GCC_NO_COMMON_BLOCKS=YES
    export GCC_OPTIMIZATION_LEVEL=s
    export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
    export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=0 CoreAudio_Debug=0 CoreAudio_UseSysLog=0 CoreAudio_StopOnAssert=0"
    export GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS=YES
    export GCC_TREAT_WARNINGS_AS_ERRORS=YES
    export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
    export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
    export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
    export GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS=YES
    export GCC_WARN_ABOUT_MISSING_PROTOTYPES=YES
    export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
    export GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED=YES
    export GCC_WARN_SHADOW=YES
    export GCC_WARN_STRICT_SELECTOR_MATCH=YES
    export GCC_WARN_UNDECLARED_SELECTOR=YES
    export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
    export GCC_WARN_UNUSED_FUNCTION=YES
    export GCC_WARN_UNUSED_LABEL=YES
    export GCC_WARN_UNUSED_PARAMETER=YES
    export GCC_WARN_UNUSED_VARIABLE=YES
    export GENERATE_MASTER_OBJECT_FILE=NO
    export GENERATE_PKGINFO_FILE=NO
    export GENERATE_PROFILING_CODE=NO
    export GID=0
    export GROUP=wheel
    export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
    export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
    export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
    export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
    export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
    export HEADERMAP_USES_VFS=NO
    export HEADER_SEARCH_PATHS="/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/Release/include  /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include"
    export ICONV=/usr/bin/iconv
    export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
    export INFOPLIST_FILE=BGMXPCHelper/Info.plist
    export INFOPLIST_OUTPUT_FORMAT=same-as-input
    export INFOPLIST_PATH=BGMXPCHelper.xpc/Contents/Info.plist
    export INFOPLIST_PREPROCESS=NO
    export INFOSTRINGS_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj/InfoPlist.strings
    export INSTALL_DIR="//Library/Application Support/Background Music"
    export INSTALL_GROUP=wheel
    export INSTALL_MODE_FLAG=u+w,go-w,a+rX
    export INSTALL_OWNER=root
    export INSTALL_PATH="/Library/Application Support/Background Music"
    export INSTALL_ROOT=/
    export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
    export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
    export JAVA_ARCHIVE_CLASSES=YES
    export JAVA_ARCHIVE_TYPE=JAR
    export JAVA_COMPILER=/usr/bin/javac
    export JAVA_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/Java
    export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
    export JAVA_JAR_FLAGS=cv
    export JAVA_SOURCE_SUBDIR=.
    export JAVA_USE_DEPENDENCIES=YES
    export JAVA_ZIP_FLAGS=-urg
    export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
    export KEEP_PRIVATE_EXTERNS=NO
    export LD_DEPENDENCY_INFO_FILE=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelper_dependency_info.dat
    export LD_GENERATE_MAP_FILE=NO
    export LD_MAP_FILE_PATH=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/BGMXPCHelper-LinkMap-normal-x86_64.txt
    export LD_NO_PIE=NO
    export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
    export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
    export LEX=lex
    export LIBRARY_FLAG_NOSPACE=YES
    export LIBRARY_FLAG_PREFIX=-l
    export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
    export LIBRARY_SEARCH_PATHS="/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/Release "
    export LINKER_DISPLAYS_MANGLED_NAMES=NO
    export LINK_FILE_LIST_normal_x86_64=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal/x86_64/BGMXPCHelper.LinkFileList
    export LINK_WITH_STANDARD_LIBRARIES=YES
    export LOCALIZED_RESOURCES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/English.lproj
    export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
    export LOCAL_APPS_DIR=/Applications
    export LOCAL_DEVELOPER_DIR=/Library/Developer
    export LOCAL_LIBRARY_DIR=/Library
    export MACH_O_TYPE=mh_execute
    export MACOSX_DEPLOYMENT_TARGET=10.9
    export MAC_OS_X_PRODUCT_BUILD_VERSION=14F1605
    export MAC_OS_X_VERSION_ACTUAL=101005
    export MAC_OS_X_VERSION_MAJOR=101000
    export MAC_OS_X_VERSION_MINOR=1005
    export MTL_ENABLE_DEBUG_INFO=NO
    export NATIVE_ARCH=i386
    export NATIVE_ARCH_32_BIT=i386
    export NATIVE_ARCH_64_BIT=x86_64
    export NATIVE_ARCH_ACTUAL=x86_64
    export NO_COMMON=YES
    export OBJECT_FILE_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects
    export OBJECT_FILE_DIR_normal=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Objects-normal
    export OBJROOT=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build
    export ONLY_ACTIVE_ARCH=NO
    export OPTIMIZATION_LEVEL=0
    export OS=MACOS
    export OSAC=/usr/bin/osacompile
    export PACKAGE_TYPE=com.apple.package-type.xpc-service
    export PASCAL_STRINGS=YES
    export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/usr/local/sbin:/Users/ariera/.rbenv/shims:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin"
    export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
    export PBDEVELOPMENTPLIST_PATH=BGMXPCHelper.xpc/Contents/pbdevelopment.plist
    export PFE_FILE_C_DIALECTS=objective-c
    export PKGINFO_FILE_PATH=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/PkgInfo
    export PKGINFO_PATH=BGMXPCHelper.xpc/Contents/PkgInfo
    export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
    export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
    export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
    export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform
    export PLATFORM_NAME=macosx
    export PLATFORM_PREFERRED_ARCH=x86_64
    export PLATFORM_PRODUCT_BUILD_VERSION=6E35b
    export PLIST_FILE_OUTPUT_FORMAT=same-as-input
    export PLUGINS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/PlugIns
    export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
    export PRECOMP_DESTINATION_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/PrefixHeaders
    export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
    export PRIVATE_HEADERS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/PrivateHeaders
    export PRODUCT_BUNDLE_IDENTIFIER=com.bearisdriving.BGM.XPCHelper
    export PRODUCT_MODULE_NAME=BGMXPCHelper
    export PRODUCT_NAME=BGMXPCHelper
    export PRODUCT_SETTINGS_PATH=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/BGMXPCHelper/Info.plist
    export PRODUCT_TYPE=com.apple.product-type.xpc-service
    export PROFILING_CODE=NO
    export PROJECT=BGMApp
    export PROJECT_DERIVED_FILE_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/DerivedSources
    export PROJECT_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp
    export PROJECT_FILE_PATH=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/BGMApp.xcodeproj
    export PROJECT_NAME=BGMApp
    export PROJECT_TEMP_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build
    export PROJECT_TEMP_ROOT=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build
    export PUBLIC_HEADERS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Headers
    export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
    export REMOVE_CVS_FROM_RESOURCES=YES
    export REMOVE_GIT_FROM_RESOURCES=YES
    export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
    export REMOVE_HG_FROM_RESOURCES=YES
    export REMOVE_SVN_FROM_RESOURCES=YES
    export REZ_COLLECTOR_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/ResourceManagerResources
    export REZ_OBJECTS_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/ResourceManagerResources/Objects
    export REZ_SEARCH_PATHS="/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/Release "
    export RUN_CLANG_STATIC_ANALYZER=0
    export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
    export SCRIPTS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources/Scripts
    export SCRIPT_INPUT_FILE_COUNT=0
    export SCRIPT_OUTPUT_FILE_COUNT=0
    export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk
    export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk
    export SDK_NAME=macosx10.10
    export SDK_PRODUCT_BUILD_VERSION=14D125
    export SED=/usr/bin/sed
    export SEPARATE_STRIP=NO
    export SEPARATE_SYMBOL_EDIT=NO
    export SET_DIR_MODE_OWNER_GROUP=YES
    export SET_FILE_MODE_OWNER_GROUP=NO
    export SHALLOW_BUNDLE=NO
    export SHARED_DERIVED_FILE_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/Release/DerivedSources
    export SHARED_FRAMEWORKS_FOLDER_PATH=BGMXPCHelper.xpc/Contents/SharedFrameworks
    export SHARED_PRECOMPS_DIR=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.DeveloperTools/6.4-6E35b/Xcode/SharedPrecompiledHeaders
    export SHARED_SUPPORT_FOLDER_PATH=BGMXPCHelper.xpc/Contents/SharedSupport
    export SKIP_INSTALL=NO
    export SOURCE_ROOT=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp
    export SRCROOT=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp
    export STRINGS_FILE_OUTPUT_ENCODING=UTF-16
    export STRIP_INSTALLED_PRODUCT=YES
    export STRIP_STYLE=non-global
    export SUPPORTED_PLATFORMS=macosx
    export SYMROOT=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build
    export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
    export SYSTEM_APPS_DIR=/Applications
    export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
    export SYSTEM_DEMOS_DIR=/Applications/Extras
    export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
    export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
    export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
    export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
    export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
    export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
    export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
    export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
    export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
    export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
    export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
    export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
    export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
    export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
    export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
    export SYSTEM_LIBRARY_DIR=/System/Library
    export TARGETNAME=BGMXPCHelper
    export TARGET_BUILD_DIR="/Library/Application Support/Background Music"
    export TARGET_NAME=BGMXPCHelper
    export TARGET_TEMP_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_FILES_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_FILE_DIR=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build
    export TEMP_ROOT=/Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build
    export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
    export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
    export UID=0
    export UNLOCALIZED_RESOURCES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/Resources
    export UNSTRIPPED_PRODUCT=NO
    export USER=root
    export USER_APPS_DIR=/Users/ariera/Applications
    export USER_LIBRARY_DIR=/Users/ariera/Library
    export USE_DYNAMIC_NO_PIC=YES
    export USE_HEADERMAP=YES
    export USE_HEADER_SYMLINKS=NO
    export VALIDATE_PRODUCT=NO
    export VALID_ARCHS="i386 x86_64"
    export VERBOSE_PBXCP=NO
    export VERSIONPLIST_PATH=BGMXPCHelper.xpc/Contents/version.plist
    export VERSION_INFO_BUILDER=root
    export VERSION_INFO_FILE=BGMXPCHelper_vers.c
    export VERSION_INFO_STRING="\"@(#)PROGRAM:BGMXPCHelper  PROJECT:BGMApp-\""
    export WRAPPER_EXTENSION=xpc
    export WRAPPER_NAME=BGMXPCHelper.xpc
    export WRAPPER_SUFFIX=.xpc
    export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
    export XCODE_PRODUCT_BUILD_VERSION=6E35b
    export XCODE_VERSION_ACTUAL=0640
    export XCODE_VERSION_MAJOR=0600
    export XCODE_VERSION_MINOR=0640
    export XPCSERVICES_FOLDER_PATH=BGMXPCHelper.xpc/Contents/XPCServices
    export YACC=yacc
    export arch=x86_64
    export variant=normal
    /bin/sh -c /Users/ariera/dev/vendor/BackgroundMusic/BGMApp/build/BGMApp.build/Release/BGMXPCHelper.build/Script-276972891CAFCE91007A2F7C.sh
Installed to com.bearisdriving.BGM.XPCHelper.plist to /Library/LaunchDaemons.
/Library/LaunchDaemons/com.bearisdriving.BGM.XPCHelper.plist: Operation already in progress
Command /bin/sh failed with exit code 133

** INSTALL FAILED **


The following build commands failed:
    PhaseScriptExecution Run\ Script build/BGMApp.build/Release/BGMXPCHelper.build/Script-276972891CAFCE91007A2F7C.sh
(1 failure)

Thank you!

Not an 'issue' per se, but I just signed up on GitHub to drop in and say a big thank you for making this. Running without any hindrance on my MacBook Pro (Late 2013) with OS X 10.11.4 El Capitan.

Incredibly useful. It should be an inbuilt feature in OS X and won't be surprised if Apple 'adopts' the idea as a part of the OS in the future. I'll be glad to support you with system tests and bug reports through the development. 😊

Best,
T.

homebrew install

Hello!
First of all: THANKS, this is a wonderful tool and I'll be using this forever!

To make it easy to install, do you plan to integrate with homebrew? Or maybe brew cask?

Would you accept a pull request implementing brew integration? (not that I know exactly how to do it lol)

Cheers

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.